-
Hi,
Copying the kuttle approach I created a script that handles the creation of the pod itself:
https://gist.github.com/kouk/5ee3c5892177b5db2fa22f2f0478646f
Is something like this relevant to …
-
#!/bin/sh
#angelos@unix.gr
found=$(which sshuttle)
if [ $? -ne 0 ]
then
echo "Please install sshuttle"
echo "apt-get install sshuttle or brew install shuttle or whatever"
exit 1
…
-
Currently the CI tasks that run on every PR take about 1 hour to complete. We also do not allow (I think) out of date PRs to be merged. This makes it quite painful to get changes in quickly and punish…
-
My setup is as fallows:
```
#wg.conf
[Interface]
PrivateKey = XXXXXXXXX
Address = 192.168.100.3/32
DNS = 192.168.100.1
[Peer]
PublicKey = XXXXXXXXXX
AllowedIPs = 0.0.0.0/0, ::/0
Endpoint =…
-
dspv updated
7 months ago
-
originally @patricknelson added as a comment to related issue: https://github.com/k14s/ytt/issues/14#issuecomment-542965903:
It's not always essential for the resulting YAML to have comments for me…
-
-
Buildkite has hard limit of 30 minutes in operator E2E tests. Sometimes, it doesn't wait for kuttle test runner to finish reporting it's finding.
Another problem is that tests order shows that we …
-
### What went wrong?
In Redpanda operator there are cases where kuttle can not delete namespace during teardown of the single test case.
The error comes from Kubernetes API
```
case.go:114…
-
# Story
Data stores are hard-coded within the module. Means, if we want to specify any other config this won't work well.
# Solution
We need to place **datastores** config as a nested block and c…