Skip to content

Commit

Permalink
Popeye: Add Package (#303)
Browse files Browse the repository at this point in the history
* Rebuilt README.md (#270)

* Automatically update README nightly (#268)

* Automatically update README nightly

* fix triggers

* add name

* fix syntax

* add labels

* Fix example (#272)

* Update README.md (#273)

* Kind (#266)

* update: add kind

* update: minor pathing fixes to makefile inclusion documentation for a functional example

* update: Additional notes for adding new packages, minor wording fix for description of fetch package, update of readme

* Update README.yaml

Co-Authored-By: Erik Osterman <erik@cloudposse.com>

* Update README.md

Co-Authored-By: Erik Osterman <erik@cloudposse.com>

* update: minor readme fixes

* Update README.yaml

Co-Authored-By: Erik Osterman <erik@cloudposse.com>

* Update README.yaml

Co-Authored-By: Erik Osterman <erik@cloudposse.com>

* Update README.md (#274)

* Automated Package Updates (#275)

* update packages

* Fix vendor packages after updates

* Restore Makefile

* fix tarball

* reset release

* Update actions (#276)

* Update actions

* refactor auto-lable

* remove dup

* Update README.md (#278)

* update packages (#279)

* Automated Package Updates (#280)

* update packages

* fix sops download url

* Automated Package Updates (#281)

* update packages

* Fix pandoc url

* Rollback release

* update packages (#282)

* feature: kubectl plugin manager (krew) app (#286)

* [jx] add tool (#287)

* [jx] add tool

* fix: install as tarball, not binary

* [rancher] Add Package (#288)

* update packages (#285)

* Amtool (#271)

* update: addition of amtool

* update: addition of amtool

* update: amtool build fixes

* update: amtool build fixes

* update: amtool apk build

* fix: add amtool to auto-label

* fix: Makefile fix?

* fix: Makefile auto-label

* update: readme update

* update: auto-label space update

* Automated Package Updates (#289)

* update packages

* update packages

* update packages

* update packages (#290)

* popeye: add package

Co-authored-by: Erik Osterman <erik@cloudposse.com>
Co-authored-by: Cloud Posse Bot (CI/CD) <ops@cloudposse.com>
  • Loading branch information
3 people committed Dec 26, 2019
1 parent 0f779de commit 89b80eb
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/auto-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ vendor/misspell: vendor/misspell/**
vendor/packer: vendor/packer/**
vendor/pandoc: vendor/pandoc/**
vendor/pgmetrics: vendor/pgmetrics/**
vendor/popeye: vendor/popeye/**
vendor/promtool: vendor/promtool/**
vendor/rakkess: vendor/rakkess/**
vendor/rancher: vendor/rancher/**
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ misspell 0.3.4 Correct commonly misspelled English words i
packer 1.4.4 Packer is a tool for creating identical machine images for multiple platforms from a single source configuration.
pandoc 2.8.1 Universal markup converter
pgmetrics 1.7.1 Postgres metrics
popeye 0.5.0 A Kubernetes cluster resource sanitizer
promtool 2.14.0 Prometheus CLI tool
rakkess 0.4.2 Review Access - kubectl plugin to show an access matrix for all available resources
rancher 2.3.2 Rancher CLI
Expand Down
1 change: 1 addition & 0 deletions docs/targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ misspell 0.3.4 Correct commonly misspelled English words i
packer 1.4.4 Packer is a tool for creating identical machine images for multiple platforms from a single source configuration.
pandoc 2.8.1 Universal markup converter
pgmetrics 1.7.1 Postgres metrics
popeye 0.5.0 A Kubernetes cluster resource sanitizer
promtool 2.14.0 Prometheus CLI tool
rakkess 0.4.2 Review Access - kubectl plugin to show an access matrix for all available resources
rancher 2.3.2 Rancher CLI
Expand Down
1 change: 1 addition & 0 deletions vendor/popeye/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A Kubernetes cluster resource sanitizer
1 change: 1 addition & 0 deletions vendor/popeye/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Apache
27 changes: 27 additions & 0 deletions vendor/popeye/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

include ../../tasks/Makefile.package
include ../../tasks/Makefile.apk

ifeq ($(ARCH), amd64)
ARCH=x86_64
endif

ifeq ($(OS), darwin)
OS=Darwin
else
OS=Linux
endif

export VENDOR = derailed
export PACKAGE_NAME = popeye
export PACKAGE_REPO_NAME = popeye
export DOWNLOAD_URL ?= $(PACKAGE_REPO_URL)/releases/download/v$(PACKAGE_VERSION)/$(PACKAGE_NAME)_$(PACKAGE_VERSION)_$(OS)_$(ARCH).tar.gz

## APK build specific requirements
export APK_BUILD_TEMPLATE ?= APKBUILD.github-binary

install:
$(call download_tarball)

test:
$(PACKAGE_EXE) version
1 change: 1 addition & 0 deletions vendor/popeye/RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1
1 change: 1 addition & 0 deletions vendor/popeye/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.5.0

0 comments on commit 89b80eb

Please sign in to comment.