Puppet Class: profile::wmcs::kubeadm::client
- Defined in:
- modules/profile/manifests/wmcs/kubeadm/client.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 |
# File 'modules/profile/manifests/wmcs/kubeadm/client.pp', line 2
class profile::wmcs::kubeadm::client (
String $component = lookup('profile::wmcs::kubeadm::component'),
) {
class { '::kubeadm::repo':
component => $component,
}
class { '::kubeadm::kubectl': }
}
|