puppet-kubernetes
puppet-kubernetes copied to clipboard
many modules will provide repo management, often with a true/false parameter to allow overriding. currently, this module appears to do no repo management. is this something in-scope for your project?
::kubernetes::node::kubelet includes ::kubernetes::node and it then includes ::kubernetes::client and I have no way of passing manage_package = false to those classes do I ?
manage_packages for kubernetes::client and kubernetes::node set through kubernetes::node::kubelet parameters
The documentation should describe a complete procedure how to create a fully functional kubernetes cluster. This should include all preconditions and the complete parameters for this module. I'm currently testing...
currently we're managing numerous file and exec resources to create namespaces / rcs and services in kubectl. e.g.: ``` puppet exec { "create_namespace": command => "/usr/bin/kubectl --kubeconfig=/etc/kubernetes/system-kubeconfig.yaml create -f /etc/kubernetes/pods/namespace.yaml",...