Hello Everyone,
my problems with dagger-engine in corporate k8s continues. I've installed the engine inside a single pod. The pod is up and running. For testing purposes I started an alpine pod besides the dagger-engine pod with mounted buildkitd.sock file.
I installed the dagger cli and tried to execute the following script via dagger run ./build.sh
Simple build script
#!/bin/bash
alpine=$(dagger query <<EOF
{
container {
from(address:"secret-corporate-registry/alpine:latest") {
withExec(args:["uname", "-nrio"]) {
stdout
}
}
}
}
EOF
)
echo $alpine
I have attached an image with my cli commands and the dagger run output. To be honest I am really a bit frustrated because I am fighting with this for some days now without success.
Maybe someone had similar issues and could help me out? Thanks for your patience.
