forked from telepresenceio/telepresence
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make testbench-check TELEPRESENCE_REGISTRY=docker.io/lukeshu PYTEST_ARGS="-m 'new and inject_tcp'" The environments included were just taken verbatim from testbench-demo.git, then beaten until `-m 'new and inject_tcp'` worked correctly.
- Loading branch information
Showing
11 changed files
with
127 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,7 @@ docs/.bundle | |
virtualenv | ||
*/__pycache__ | ||
*cache* | ||
|
||
environments | ||
mkosi.cache | ||
.mkosi* |
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
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ mypy | |
pytest | ||
pytest-xdist | ||
pytest-timeout | ||
pytest-tap | ||
pyyaml | ||
yapf | ||
pylint | ||
|
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 @@ | ||
/*.knaut | ||
/*.knaut.claim | ||
/*.mk | ||
/*.osi |
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,27 @@ | ||
[Distribution] | ||
Distribution=arch | ||
|
||
[Output] | ||
Bootable=yes | ||
|
||
[Partitions] | ||
RootSize=4G | ||
|
||
[Packages] | ||
Packages= | ||
# Base OS | ||
base | ||
base-devel | ||
networkmanager | ||
|
||
# For AUR and for tests/utils.py | ||
git | ||
|
||
# For Telepresence | ||
conntrack-tools | ||
docker | ||
fuse2 | ||
python-setuptools | ||
sshfs | ||
torsocks | ||
WithNetwork=yes |
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 @@ | ||
#!/bin/sh | ||
gpasswd -a testbench docker | ||
systemctl enable docker | ||
sudo -u testbench sh -c 'cd ~ && git clone https://aur.archlinux.org/kubectl-bin.git && cd kubectl-bin && makepkg --syncdeps --install --noconfirm --rmdeps' |
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,29 @@ | ||
[Distribution] | ||
Distribution=debian | ||
|
||
[Output] | ||
Bootable=yes | ||
|
||
[Partitions] | ||
RootSize=4G | ||
|
||
[Packages] | ||
Packages= | ||
# Base OS | ||
ca-certificates | ||
make | ||
network-manager | ||
sudo | ||
|
||
# For tests/utils.py | ||
git | ||
|
||
# For Telepresence | ||
conntrack | ||
docker.io | ||
kubernetes-client | ||
libpython3.7 | ||
python3-setuptools | ||
sshfs | ||
torsocks | ||
WithNetwork=yes |
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,3 @@ | ||
#!/bin/sh | ||
gpasswd -a testbench docker | ||
systemctl enable NetworkManager |
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,28 @@ | ||
[Distribution] | ||
Distribution=fedora | ||
|
||
[Output] | ||
Bootable=yes | ||
|
||
[Partitions] | ||
RootSize=4G | ||
|
||
[Packages] | ||
Packages= | ||
# Base OS | ||
@core | ||
@standard | ||
make | ||
|
||
# For tests/utils.py | ||
git | ||
|
||
# For Telepresence | ||
conntrack-tools | ||
docker | ||
fuse | ||
kubernetes-client | ||
python3-setuptools | ||
sshfs | ||
torsocks | ||
WithNetwork=yes |
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,5 @@ | ||
#!/bin/sh | ||
sudo groupadd docker | ||
gpasswd -a testbench docker | ||
systemctl enable NetworkManager | ||
systemctl enable docker |