Compare commits
35 Commits
dependabot
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 9245a4aa87 | |||
| c86c5414f3 | |||
| 8769b4d7f8 | |||
| 9cba926550 | |||
| 79f5054804 | |||
| 0aebf31939 | |||
| cc86998f2c | |||
| 5480aa25b8 | |||
| 795b7e399d | |||
| 8bebd56cf1 | |||
| 76374a698a | |||
| 63626c2ab9 | |||
| 96fd02b85f | |||
| bcb52e3548 | |||
| 084cc375da | |||
| fa02b48f15 | |||
| 422f8c4871 | |||
| eb6869404e | |||
| 34409f04a3 | |||
| b47ed9f622 | |||
| 9c678d50e6 | |||
| b683bfbcc0 | |||
| 68095c2434 | |||
| c8d463dcb8 | |||
| 11525cf938 | |||
| 1afb6a2260 | |||
| 12784de8d3 | |||
| 5c71e3c2c5 | |||
| 27576e9557 | |||
| 2e357d1988 | |||
| bd151cea10 | |||
| f1ff24e1c4 | |||
| a34171c71e | |||
| 08ddc9acf6 | |||
| d2a043f2a3 |
69
.github/workflows/build.yaml
vendored
Normal file
69
.github/workflows/build.yaml
vendored
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
name: Virtual Kubelet Docker Build and Deploy
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 输出触发信息
|
||||||
|
run: |
|
||||||
|
echo "🎉 该作业由 ${{ github.event_name }} 事件自动触发。"
|
||||||
|
echo "🐧 此作业当前在 GitHub 托管的 ${{ runner.os }} 服务器上运行!"
|
||||||
|
echo "🔎 您的发布版本是 ${{ github.ref_name }},仓库是 ${{ github.repository }}。"
|
||||||
|
|
||||||
|
- name: 检出仓库代码
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: 输出工作区信息
|
||||||
|
run: |
|
||||||
|
echo "💡 ${{ github.repository }} 仓库已克隆到运行器。"
|
||||||
|
echo "🖥️ 工作流现在已准备好在运行器上测试您的代码。"
|
||||||
|
ls -la ${{ github.workspace }}
|
||||||
|
echo "🍏 此作业的状态是 ${{ job.status }}。"
|
||||||
|
|
||||||
|
|
||||||
|
- name: 设置 Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
driver: docker # 明确指定使用 docker 驱动
|
||||||
|
|
||||||
|
|
||||||
|
- name: 从标签名中提取版本号
|
||||||
|
id: extract_version
|
||||||
|
run: |
|
||||||
|
# 从Release标签名中提取版本号,例如从 v0.1.0 中提取 v0.1.0
|
||||||
|
VERSION=$(echo "${{ github.ref_name }}" | sed 's|refs/tags/||')
|
||||||
|
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||||
|
echo "提取的版本号:$VERSION"
|
||||||
|
|
||||||
|
- name: 登录 Docker 注册表
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: registry-vpc.cn-beijing.aliyuncs.com
|
||||||
|
username: ${{ secrets.ALI_DOCKER_REGISTRY_USERNAME }}
|
||||||
|
password: ${{ secrets.ALI_DOCKER_REGISTRY_PASSWORD }}
|
||||||
|
|
||||||
|
- name: 构建并推送 Virtual Kubelet 镜像
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile # 确保Dockerfile路径正确
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
registry-vpc.cn-beijing.aliyuncs.com/d8dcloud/virtual-kubelet:alpine
|
||||||
|
build-args: |
|
||||||
|
GOLANG_CI_LINT_VERSION=v1.68.0
|
||||||
|
BUILD_TAGS=
|
||||||
|
HTTP_PROXY=${{ vars.HTTP_PROXY }}
|
||||||
|
HTTPS_PROXY=${{ vars.HTTPS_PROXY }}
|
||||||
|
NO_PROXY=${{ vars.NO_PROXY }}
|
||||||
|
|
||||||
|
labels: |
|
||||||
|
org.opencontainers.image.title=Virtual Kubelet
|
||||||
|
org.opencontainers.image.description=Kubernetes Virtual Kubelet implementation
|
||||||
|
org.opencontainers.image.version=${{ env.VERSION }}
|
||||||
|
org.opencontainers.image.source=${{ github.repositoryUrl }}
|
||||||
|
org.opencontainers.image.revision=${{ github.sha }}
|
||||||
115
.github/workflows/ci.yml
vendored
115
.github/workflows/ci.yml
vendored
@@ -1,115 +0,0 @@
|
|||||||
name: CI
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [master]
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
env:
|
|
||||||
GO_VERSION: "1.23"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
lint:
|
|
||||||
name: Lint
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
timeout-minutes: 20
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: ${{ env.GO_VERSION }}
|
|
||||||
cache: false
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: golangci/golangci-lint-action@v8
|
|
||||||
with:
|
|
||||||
version: v2.1
|
|
||||||
args: --timeout=15m --config=.golangci.yml
|
|
||||||
skip-cache: true
|
|
||||||
|
|
||||||
unit-tests:
|
|
||||||
name: Unit Tests
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
timeout-minutes: 20
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: ${{ env.GO_VERSION }}
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Run Tests
|
|
||||||
run: make test
|
|
||||||
|
|
||||||
env-tests:
|
|
||||||
name: Envtest Tests
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
timeout-minutes: 10
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: ${{ env.GO_VERSION }}
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Run Tests
|
|
||||||
run: make envtest
|
|
||||||
|
|
||||||
e2e:
|
|
||||||
name: E2E
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
timeout-minutes: 20
|
|
||||||
env:
|
|
||||||
CHANGE_MINIKUBE_NONE_USER: true
|
|
||||||
KUBERNETES_VERSION: v1.31
|
|
||||||
MINIKUBE_HOME: /home/runner
|
|
||||||
MINIKUBE_VERSION: v1.34.0
|
|
||||||
MINIKUBE_WANTUPDATENOTIFICATION: false
|
|
||||||
MINIKUBE_WANTREPORTERRORPROMPT: false
|
|
||||||
SKAFFOLD_VERSION: v2.13.2
|
|
||||||
GO111MODULE: "on"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: ${{ env.GO_VERSION }}
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Install Skaffold
|
|
||||||
run: |
|
|
||||||
curl -sLo skaffold https://storage.googleapis.com/skaffold/releases/${SKAFFOLD_VERSION}/skaffold-linux-amd64
|
|
||||||
chmod +x skaffold
|
|
||||||
sudo mv skaffold /usr/local/bin/
|
|
||||||
echo /usr/local/bin >> $GITHUB_PATH
|
|
||||||
- name: Install Minikube dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update && sudo apt-get install -y apt-transport-https curl
|
|
||||||
echo "deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/${KUBERNETES_VERSION}/deb/ /" | sudo tee /etc/apt/sources.list.d/kubernetes.list
|
|
||||||
curl -fsSL https://pkgs.k8s.io/core:/stable:/${KUBERNETES_VERSION}/deb/Release.key | sudo gpg --no-tty --yes --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get remove -y containerd.io containerd
|
|
||||||
sudo apt-get install -y kubectl docker.io
|
|
||||||
- name: Install Minikube
|
|
||||||
run: |
|
|
||||||
curl -sLo minikube https://storage.googleapis.com/minikube/releases/${MINIKUBE_VERSION}/minikube-linux-amd64
|
|
||||||
chmod +x minikube
|
|
||||||
sudo mv minikube /usr/local/bin/
|
|
||||||
- name: Start Minikube
|
|
||||||
run: |
|
|
||||||
sudo usermod -aG docker $USER && newgrp docker
|
|
||||||
minikube start --vm-driver=docker --cpus 2 --memory 2048 --kubernetes-version=${KUBERNETES_VERSION}
|
|
||||||
- name: Wait for Minikube
|
|
||||||
run: |
|
|
||||||
JSONPATH='{range .items[*]}{@.metadata.name}:{range @.status.conditions[*]}{@.type}={@.status};{end}{end}';
|
|
||||||
until kubectl get nodes -o jsonpath="$JSONPATH" 2>&1 | grep -q "Ready=True"; do
|
|
||||||
sleep 1;
|
|
||||||
done
|
|
||||||
- name: Run Tests
|
|
||||||
run: make e2e
|
|
||||||
59
.github/workflows/codeql-analysis.yml
vendored
59
.github/workflows/codeql-analysis.yml
vendored
@@ -1,59 +0,0 @@
|
|||||||
name: "CodeQL"
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [master]
|
|
||||||
schedule:
|
|
||||||
- cron: "19 18 * * 3"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
analyze:
|
|
||||||
name: Analyze
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
security-events: write
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
language: ["go"]
|
|
||||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
|
||||||
# Learn more:
|
|
||||||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v3
|
|
||||||
with:
|
|
||||||
languages: ${{ matrix.language }}
|
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
||||||
# By default, queries listed here will override any specified in a config file.
|
|
||||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
||||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
|
||||||
|
|
||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
|
||||||
- name: Autobuild
|
|
||||||
uses: github/codeql-action/autobuild@v3
|
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
|
||||||
# 📚 https://git.io/JvXDl
|
|
||||||
|
|
||||||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
||||||
# and modify them (or add more) to build your code if your project
|
|
||||||
# uses a compiled language
|
|
||||||
|
|
||||||
#- run: |
|
|
||||||
# make bootstrap
|
|
||||||
# make release
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v3
|
|
||||||
10
Dockerfile
10
Dockerfile
@@ -25,8 +25,16 @@ RUN \
|
|||||||
--mount=type=cache,target=/root/.cache/golangci-lint \
|
--mount=type=cache,target=/root/.cache/golangci-lint \
|
||||||
golangci-lint run -v --out-format="${OUT_FORMAT:-colored-line-number}"
|
golangci-lint run -v --out-format="${OUT_FORMAT:-colored-line-number}"
|
||||||
|
|
||||||
FROM scratch
|
# FROM scratch
|
||||||
|
# COPY --from=builder /usr/bin/virtual-kubelet /usr/bin/virtual-kubelet
|
||||||
|
# COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
|
||||||
|
|
||||||
|
FROM alpine:latest
|
||||||
COPY --from=builder /usr/bin/virtual-kubelet /usr/bin/virtual-kubelet
|
COPY --from=builder /usr/bin/virtual-kubelet /usr/bin/virtual-kubelet
|
||||||
COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
|
COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
|
||||||
|
|
||||||
|
# 创建必要的目录
|
||||||
|
RUN mkdir -p /root/.kube
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/bin/virtual-kubelet" ]
|
ENTRYPOINT [ "/usr/bin/virtual-kubelet" ]
|
||||||
CMD [ "--help" ]
|
CMD [ "--help" ]
|
||||||
|
|||||||
Reference in New Issue
Block a user