Puppet Class: profile::ceph::auth::load_all

Defined in:
modules/profile/manifests/ceph/auth/load_all.pp

Overview

SPDX-License-Identifier: Apache-2.0 This profile deploys and loads to ceph all the known authorizations. You only need one of profile::ceph::auth::load_all or profile::ceph::auth::deploy, the first will also deploy all known auths.

Parameters:

  • configuration (Ceph::Auth::Conf) (defaults to: lookup('profile::ceph::auth::load_all::configuration'))


4
5
6
7
8
9
10
# File 'modules/profile/manifests/ceph/auth/load_all.pp', line 4

class profile::ceph::auth::load_all (
  Ceph::Auth::Conf $configuration = lookup('profile::ceph::auth::load_all::configuration'),
) {
  class { 'ceph::auth::load_all':
    configuration => $configuration,
  }
}