Skip to content

Commit

Permalink
Kubeval: New Package (#338)
Browse files Browse the repository at this point in the history
* kubeval: new package

* kubeval: new package

Co-authored-by: Maxim Mironenko <[email protected]>
  • Loading branch information
zloeber and maximmi authored Feb 20, 2020
1 parent 4d402c3 commit e84f456
Show file tree
Hide file tree
Showing 8 changed files with 30 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 @@ -76,6 +76,7 @@ vendor/kubectl-1.15: vendor/kubectl-1.15/**
vendor/kubectl: vendor/kubectl/**
vendor/kubectx: vendor/kubectx/**
vendor/kubens: vendor/kubens/**
vendor/kubeval: vendor/kubeval/**
vendor/lazydocker: vendor/lazydocker/**
vendor/lectl: vendor/lectl/**
vendor/misspell: vendor/misspell/**
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ kubectl-1.14 1.14.10 Production-Grade Container Scheduling and M
kubectl-1.15 1.15.8 Production-Grade Container Scheduling and Management
kubectx 0.7.1 Switch faster between clusters and namespaces in kubectl
kubens 0.7.1 Switch faster between clusters and namespaces in kubectl
kubeval 0.14.0 Validate your Kubernetes configuration files, supports multiple Kubernetes versions
lazydocker 0.8 The lazier way to manage everything docker
lectl 0.20 Script to check issued certificates by Let's Encrypt on CTL (Certificate Transparency Log) using https://crt.sh
misspell 0.3.4 Correct commonly misspelled English words in source files
Expand Down
1 change: 1 addition & 0 deletions docs/targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ kubectl-1.14 1.14.10 Production-Grade Container Scheduling and M
kubectl-1.15 1.15.8 Production-Grade Container Scheduling and Management
kubectx 0.7.1 Switch faster between clusters and namespaces in kubectl
kubens 0.7.1 Switch faster between clusters and namespaces in kubectl
kubeval 0.14.0 Validate your Kubernetes configuration files, supports multiple Kubernetes versions
lazydocker 0.8 The lazier way to manage everything docker
lectl 0.20 Script to check issued certificates by Let's Encrypt on CTL (Certificate Transparency Log) using https://crt.sh
misspell 0.3.4 Correct commonly misspelled English words in source files
Expand Down
1 change: 1 addition & 0 deletions vendor/kubeval/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Validate your Kubernetes configuration files, supports multiple Kubernetes versions
1 change: 1 addition & 0 deletions vendor/kubeval/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NOASSERTION
23 changes: 23 additions & 0 deletions vendor/kubeval/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Package - kubeval
include ../../tasks/Makefile.package
include ../../tasks/Makefile.apk

export VENDOR = instrumenta
export PACKAGE_NAME = kubeval
export PACKAGE_REPO_NAME = kubeval
export DOWNLOAD_URL ?= $(PACKAGE_REPO_URL)/releases/download/$(PACKAGE_VERSION)/$(PACKAGE_NAME)-$(OS)-$(ARCH).tar.gz
export APK_BUILD_TEMPLATE ?= APKBUILD.github-binary

## Uncomment only if you need additional libraries
#export APKBUILD_DEPENDS += libc6-compat musl

install:
$(call download_tarball)

test:
$(PACKAGE_EXE) --version

## This may be required for apk building and varies from package to package
# Custom post-package processing (Note the double colon to append to current inherited package/prepare task)
#package/prepare::
# mv src/kubeval-$(OS).$(ARCH)/kubeval src
1 change: 1 addition & 0 deletions vendor/kubeval/RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0
1 change: 1 addition & 0 deletions vendor/kubeval/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.14.0

0 comments on commit e84f456

Please sign in to comment.