Puppet Class: profile::ceph::auth::deploy

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

Overview

SPDX-License-Identifier: Apache-2.0 This profile deploys but does not load the given 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::deploy::configuration'))
  • selected_creds (Array[String[1]]) (defaults to: lookup('profile::ceph::auth::deploy::selected_creds'))


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

class profile::ceph::auth::deploy (
  Ceph::Auth::Conf  $configuration  = lookup('profile::ceph::auth::deploy::configuration'),
  Array[String[1]]  $selected_creds = lookup('profile::ceph::auth::deploy::selected_creds'),
) {
  class { 'ceph::auth::deploy':
    configuration  => $configuration,
    selected_creds => $selected_creds,
  }
}