Rob Landers
Rob Landers
@squat with k8s [1.21 natively supporting dual-stack](https://kubernetes.io/docs/tasks/network/validate-dual-stack/) in beta, I was just curious how far along you got? It'd probably be some great publicity if you were one of only...
I had to set the following to get custom CIDR's to work and share a /64 ``` $serviceCidr = '[/64]:0:1000::/108'; $clusterCidr = '[/64]:0:2000::/96'; ... --kube-controller-manager-arg=node-cidr-mask-size-ipv6=108 ``` There's no reason that...
> Care to explain your use case again, as of why you expect to benefit from knowing what files would be copied into an image? For me, I was using...
Switch to Calico? You get all the same features and more.
Just to come along and show an example of what @Crell was saying and pointing out some limitations (to save everyone else some trouble), here's a simplified example: ```php require_once...
Do you have `.git` listed in your `.dockerignore`? Also, can you share the build output? What isn't a git repository?
If you deleted the git folder and receive an error about missing a git folder... what is the bug?
`sudo ./my-app php-server` runs a php server from your current directory. Try `sudo ./my-app run`
If I'm understanding correctly, if `dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php'` doesn't exist when the container starts, you'll run into this bug. Since it is in the cache, I suspect that is what is going...