Skip to content

Add observedGeneration to status and conditions #26

Add observedGeneration to status and conditions

Add observedGeneration to status and conditions #26

Workflow file for this run

name: Vertical Pod Autoscaler
on:
push:
paths:
- 'vertical-pod-autoscaler/**'
- '!vertical-pod-autoscaler/**/*.md'
pull_request:
paths:
- 'vertical-pod-autoscaler/**'
- '!vertical-pod-autoscaler/**/*.md'
env:
GOPATH: ${{ github.workspace }}/go
permissions:
contents: read
checks: write
jobs:
verify:
name: verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
path: ${{ env.GOPATH }}/src/k8s.io/autoscaler
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: '${{ env.GOPATH}}/src/k8s.io/autoscaler/vertical-pod-autoscaler/go.mod'
cache-dependency-path: |
${{ env.GOPATH}}/src/k8s.io/autoscaler/vertical-pod-autoscaler/go.sum
- name: Verify
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler/vertical-pod-autoscaler
run: hack/verify-all.sh -v
env:
GO111MODULE: auto