chore(container): update image docker.io/cyfershepard/jellystat to 94326cf #5290
Workflow file for this run
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
--- | |
name: "Kubeconform" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: ["clusters/lovenet/**"] | |
env: | |
KUBERNETES_DIR: ./clusters/lovenet | |
SCHEMA_DIR: /home/runner/crds | |
jobs: | |
kubeconform: | |
name: Kubeconform | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
id: generate-token | |
with: | |
app_id: "${{ secrets.BOT_APP_ID }}" | |
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
token: "${{ steps.generate-token.outputs.token }}" | |
- name: Setup Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Setup Tools | |
shell: bash | |
run: brew install kubeconform kustomize | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 | |
- name: Setup Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 | |
- name: Extract files from container image | |
shell: bash | |
run: | | |
mkdir -p ${{ env.SCHEMA_DIR }} | |
docker run --rm \ | |
-v ${{ env.SCHEMA_DIR }}:/crds \ | |
-u $(id -u) \ | |
--entrypoint /bin/sh \ | |
ghcr.io/rwlove/kubernetes-schemas:latest \ | |
-c "cp -r /usr/share/nginx/html/* /crds" | |
- name: Run kubeconform | |
shell: bash | |
run: bash ./.github/scripts/kubeconform.sh ${{ env.KUBERNETES_DIR }} ${{ env.SCHEMA_DIR }} |