Aaron Levy
Aaron Levy
An example we could use in this repo (build in rkt container): https://github.com/coreos/bootkube/blob/master/build/build-release.sh
Hi @ArchiFleKs The addon manager is likely undergoing another round of changes soon (possibly making use of `kubectl apply --prune`) See: https://github.com/kubernetes/features/issues/18 https://github.com/kubernetes/kubernetes/pull/33075 So I'm hesitant to integrate the addon-manager...
Hi Alex, In the vagrant scripts the SSL assets should be copied to the host for you as part of the provisioning step. They would be located in /etc/kubernetes/ssl See:...
Hi @AlexChesser any progress on getting this working from Windows?
You could try bind mounting in `/usr/sbin/mkfs.xfs` (I'm assuming that's the binary it's expecting). But it has a few shared library dependencies I'm not sure are present in the hyperkube...
The update engine was turned off because the development node user-experience becomes nodes that always download image / restart of first boot, because the vagrant box itself (or ami) is...
The initial optimization was around easily deploying a fully-functioning Kubernetes cluster on AWS. The tool can be used for deploying production clusters, but there will generally be customization on the...
So far we've left this to an operator to decide, and it should be as simple as: `kubectl scale rc kube-dns --replicas=X` I feel like this is still important for...
If you fork this repo, and create a pull request, the differences can easily be seen/reviewed and possibly merged into this repo (a lot easier than sharing zip files, or...
So `pod -> service -> remote pod` -- works (`a -> S -> b`) But `host -> service -> remote pod` -- does not (`A -> S -> b`) That...