We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently we're managing numerous file and exec resources to create namespaces / rcs and services in kubectl. e.g.:
exec { "create_namespace": command => "/usr/bin/kubectl --kubeconfig=/etc/kubernetes/system-kubeconfig.yaml create -f /etc/kubernetes/pods/namespace.yaml", path => '/usr/bin/', unless => "/usr/bin/kubectl --kubeconfig=/etc/kubernetes/system-kubeconfig.yaml get ns | /bin/grep kube-system", require => File['/etc/kubernetes/pods/namespace.yaml'], }
we think it would make sense to replace these with a type & provider:
kubectl { kube-system: ensure => present, kind => namespace, api_version => v1, metadata => {}, }
The text was updated successfully, but these errors were encountered:
(i volunteer to implement this feature;)
Sorry, something went wrong.
No branches or pull requests
currently we're managing numerous file and exec resources to create namespaces / rcs and services in kubectl. e.g.:
we think it would make sense to replace these with a type & provider:
The text was updated successfully, but these errors were encountered: