Skip to content

Commit

Permalink
K3d: Add package (#299)
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)

* [k3d]: 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 27, 2019
1 parent 9f1c322 commit 1f9865a
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/auto-label.yml
Expand Up @@ -53,6 +53,7 @@ vendor/htmltest: vendor/htmltest/**
vendor/hugo: vendor/hugo/**
vendor/json2hcl: vendor/json2hcl/**
vendor/jx: vendor/jx/**
vendor/k3d: vendor/k3d/**
vendor/k6: vendor/k6/**
vendor/k9s: vendor/k9s/**
vendor/katafygio: vendor/katafygio/**
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -286,6 +286,7 @@ htmltest 0.10.3 :white_check_mark: Test generated HTML for
hugo 0.61.0 The world’s fastest framework for building websites.
json2hcl 0.0.6 Convert JSON to HCL, and vice versa
jx 2.0.1067 Jenkins-X
k3d 1.3.4 Little helper to run Rancher Lab's k3s in Docker
k6 0.25.1 A modern load testing tool, using Go and JavaScript - https://k6.io
k9s 0.9.3 Kubernetes CLI To Manage Your Clusters In Style
katafygio 0.8.1 K8s continuous backup to git
Expand Down
1 change: 1 addition & 0 deletions docs/targets.md
Expand Up @@ -37,6 +37,7 @@ htmltest 0.10.3 :white_check_mark: Test generated HTML for
hugo 0.61.0 The world’s fastest framework for building websites.
json2hcl 0.0.6 Convert JSON to HCL, and vice versa
jx 2.0.1067 Jenkins-X
k3d 1.3.4 Little helper to run Rancher Lab's k3s in Docker
k6 0.25.1 A modern load testing tool, using Go and JavaScript - https://k6.io
k9s 0.9.3 Kubernetes CLI To Manage Your Clusters In Style
katafygio 0.8.1 K8s continuous backup to git
Expand Down
1 change: 1 addition & 0 deletions vendor/k3d/DESCRIPTION
@@ -0,0 +1 @@
Little helper to run Rancher Lab's k3s in Docker
1 change: 1 addition & 0 deletions vendor/k3d/LICENSE
@@ -0,0 +1 @@
MIT
26 changes: 26 additions & 0 deletions vendor/k3d/Makefile
@@ -0,0 +1,26 @@
## Typical Github binary release

## Package details
export VENDOR = rancher
export PACKAGE_NAME = k3d
export PACKAGE_REPO_NAME = k3d
export DOWNLOAD_URL = $(PACKAGE_REPO_URL)/releases/download/v$(PACKAGE_VERSION)/k3d-$(OS)-$(ARCH)

## APK build specific requirements
export APK_BUILD_TEMPLATE = APKBUILD.github-binary
## Uncomment only if you need additional libraries
#export APKBUILD_DEPENDS += libc6-compat musl

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

install:
$(call download_binary)

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/k3d-$(OS)-$(ARCH) src/k3d
1 change: 1 addition & 0 deletions vendor/k3d/RELEASE
@@ -0,0 +1 @@
1
1 change: 1 addition & 0 deletions vendor/k3d/VERSION
@@ -0,0 +1 @@
1.3.4

0 comments on commit 1f9865a

Please sign in to comment.