mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
27 lines
759 B
YAML
27 lines
759 B
YAML
|
distributable:
|
||
|
url: https://github.com/kubernetes-sigs/aws-iam-authenticator/archive/v{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
versions:
|
||
|
github: kubernetes-sigs/aws-iam-authenticator
|
||
|
build:
|
||
|
dependencies:
|
||
|
go.dev: '*'
|
||
|
script:
|
||
|
- go build $GO_ARGS -ldflags="$LDFLAGS" ./cmd/aws-iam-authenticator
|
||
|
env:
|
||
|
GO_ARGS:
|
||
|
- -v
|
||
|
- -trimpath
|
||
|
- -o="{{prefix}}/bin/aws-iam-authenticator"
|
||
|
LDFLAGS:
|
||
|
- -s
|
||
|
- -w
|
||
|
- "-X sigs.k8s.io/aws-iam-authenticator/pkg.Version={{version}}"
|
||
|
provides:
|
||
|
- bin/aws-iam-authenticator
|
||
|
test:
|
||
|
script:
|
||
|
- aws-iam-authenticator version | grep {{version}}
|
||
|
- aws-iam-authenticator init -i test
|
||
|
- cat key.pem | grep "BEGIN RSA PRIVATE KEY"
|
||
|
- cat cert.pem | grep "BEGIN CERTIFICATE"
|