-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also adds the cni-plugins-bin package, since they have been split out into their own repo as of v0.6.0-rc1.
- Loading branch information
Showing
6 changed files
with
128 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
sha256 b1ae09833a238c51161918a8849031efdb46cf0068ea5b752e362d9836e2af7d cni-v0.3.0.tgz | ||
sha256 84c9a0a41b59211d560bef14bf3f53bb370156f9ac7762270b3848fed96e1be8 cni-v0.4.0.tgz | ||
sha256 d1e3c693903d498fcb89076f66410167eaa6d81df4a1051eba7565672f896543 cni-amd64-v0.6.0-rc1.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
config BR2_PACKAGE_CNI_PLUGINS_BIN | ||
bool "cni-plugins-bin" | ||
default y | ||
depends on BR2_x86_64 |
1 change: 1 addition & 0 deletions
1
deploy/iso/minikube-iso/package/cni-plugins-bin/cni-plugins-bin.hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sha256 49f14413c62f77d0ce5751934a28b291c4f04af47e591631d00e787ebcd07875 cni-plugins-amd64-v0.6.0-rc1.tgz |
110 changes: 110 additions & 0 deletions
110
deploy/iso/minikube-iso/package/cni-plugins-bin/cni-plugins-bin.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
################################################################################ | ||
# | ||
# cni-plugins-bin | ||
# | ||
################################################################################ | ||
|
||
CNI_PLUGINS_BIN_VERSION = v0.6.0-rc1 | ||
CNI_PLUGINS_BIN_SITE = https://github.com/containernetworking/plugins/releases/download/$(CNI_PLUGINS_BIN_VERSION) | ||
CNI_PLUGINS_BIN_SOURCE = cni-plugins-amd64-$(CNI_PLUGINS_BIN_VERSION).tgz | ||
|
||
define CNI_PLUGINS_BIN_INSTALL_TARGET_CMDS | ||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/bridge \ | ||
$(TARGET_DIR)/opt/cni/bin/bridge | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/bridge \ | ||
$(TARGET_DIR)/usr/bin/bridge | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/vlan \ | ||
$(TARGET_DIR)/opt/cni/bin/vlan | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/vlan \ | ||
$(TARGET_DIR)/usr/bin/vlan | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/tuning \ | ||
$(TARGET_DIR)/opt/cni/bin/tuning | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/tuning \ | ||
$(TARGET_DIR)/usr/bin/tuning | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/sample \ | ||
$(TARGET_DIR)/opt/cni/bin/sample | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/sample \ | ||
$(TARGET_DIR)/usr/bin/sample | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/ptp \ | ||
$(TARGET_DIR)/opt/cni/bin/ptp | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/ptp \ | ||
$(TARGET_DIR)/usr/bin/ptp | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/portmap \ | ||
$(TARGET_DIR)/opt/cni/bin/portmap | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/portmap \ | ||
$(TARGET_DIR)/usr/bin/portmap | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/macvlan \ | ||
$(TARGET_DIR)/opt/cni/bin/macvlan | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/macvlan \ | ||
$(TARGET_DIR)/usr/bin/macvlan | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/loopback \ | ||
$(TARGET_DIR)/opt/cni/bin/loopback | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/loopback \ | ||
$(TARGET_DIR)/usr/bin/loopback | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/ipvlan \ | ||
$(TARGET_DIR)/opt/cni/bin/ipvlan | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/ipvlan \ | ||
$(TARGET_DIR)/usr/bin/ipvlan | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/host-local \ | ||
$(TARGET_DIR)/opt/cni/bin/host-local | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/host-local \ | ||
$(TARGET_DIR)/usr/bin/host-local | ||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/flannel \ | ||
$(TARGET_DIR)/opt/cni/bin/flannel | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/flannel \ | ||
$(TARGET_DIR)/usr/bin/flannel | ||
|
||
|
||
$(INSTALL) -D -m 0755 \ | ||
$(@D)/dhcp \ | ||
$(TARGET_DIR)/opt/cni/bin/dhcp | ||
|
||
ln -sf \ | ||
../../opt/cni/bin/dhcp \ | ||
$(TARGET_DIR)/usr/bin/dhcp | ||
endef | ||
|
||
$(eval $(generic-package)) |