Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New v3.15.1 of Gatekeeper. #17112

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions gatekeeper.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
package:
name: gatekeeper
version: 3.15.1
epoch: 0
description: Gatekeeper - Policy Controller for Kubernetes
copyright:
- license: Apache-2.0
dependencies:
provides:
- gatekeeper=${{package.full-version}}

environment:
contents:
packages:
- build-base
- busybox
- ca-certificates-bundle
- go
- wolfi-baselayout

pipeline:
# We can't use go/install because this requires specific ldflags to set the version
- uses: git-checkout
with:
repository: https://github.com/open-policy-agent/gatekeeper
tag: v${{package.version}}
expected-commit: 3350319f76d3e2d78df0b972c63258cba7c7915f

- uses: go/bump
with:
deps: google.golang.org/[email protected] github.com/docker/[email protected]

- runs: |
FRAMEWORKS_VERSION=$(go list -f '{{ .Version }}' -m github.com/open-policy-agent/frameworks/constraint)
OPA_VERSION=$(go list -f '{{ .Version }}' -m github.com/open-policy-agent/opa)
CGO_ENABLED=0 GO111MODULE=on go build -mod vendor -a -ldflags "-w -X github.com/open-policy-agent/gatekeeper/pkg/version.Version=v${{package.version}} -X main.frameworksVersion=${FRAMEWORKS_VERSION} -X main.opaVersion=${OPA_VERSION}" -o manager
make gator
mkdir -p ${{targets.destdir}}/usr/bin
install -Dm755 ./manager ${{targets.destdir}}/usr/bin/manager

- uses: strip

subpackages:
- name: ${{package.name}}-compat
pipeline:
- runs: |
mkdir -p ${{targets.subpkgdir}}
ln -sf /usr/bin/manager ${{targets.subpkgdir}}/manager
dependencies:
provides:
- gatekeeper-compat=${{package.full-version}}

- name: ${{package.name}}-gator
pipeline:
- runs: |
mkdir -p ${{targets.subpkgdir}}/usr/bin
mv bin/gator ${{targets.subpkgdir}}/usr/bin/gator
dependencies:
provides:
- gatekeeper-gator=${{package.full-version}}

update:
enabled: true
github:
identifier: open-policy-agent/gatekeeper
strip-prefix: v
use-tag: true
Loading