aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/glance
diff options
context:
space:
mode:
authorEmilien Macchi <emilien@redhat.com>2016-03-22 17:33:22 -0400
committerEmilien Macchi <emilien@redhat.com>2016-04-11 16:34:00 +0000
commit2aaae65493beb85d4ca71eb028dfaab58d69f31c (patch)
treeaf477460fcd8900a32b7022c130af7a614e70ff8 /manifests/profile/base/glance
parent1c7b9359b20d3da69b665f63d2354229b253401c (diff)
Add Glance profiles
Add Glance profiles for non-ha & ha scenarios. Change-Id: Ifc388f7058ccfff2818f531bcbc00c7179874bbc Implements: blueprint refactor-puppet-manifests
Diffstat (limited to 'manifests/profile/base/glance')
-rw-r--r--manifests/profile/base/glance/api.pp68
-rw-r--r--manifests/profile/base/glance/registry.pp64
2 files changed, 132 insertions, 0 deletions
diff --git a/manifests/profile/base/glance/api.pp b/manifests/profile/base/glance/api.pp
new file mode 100644
index 0000000..22b4dc9
--- /dev/null
+++ b/manifests/profile/base/glance/api.pp
@@ -0,0 +1,68 @@
+# Copyright 2016 Red Hat, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+# == Class: tripleo::profile::base::glance::api
+#
+# Glance API profile for tripleo
+#
+# === Parameters
+#
+# [*manage_service*]
+# (Optional) Whether to manage the glance service
+# Defaults to undef
+#
+# [*enabled*]
+# (Optional) Whether to enable the glance service
+# Defaults to undef
+#
+# [*step*]
+# (Optional) The current step in deployment. See tripleo-heat-templates
+# for more details.
+# Defaults to hiera('step')
+#
+# [*glance_backend*]
+# (Optional) Glance backend(s) to use.
+# Defaults to downcase(hiera('glance_backend', 'swift'))
+#
+class tripleo::profile::base::glance::api (
+ $manage_service = undef,
+ $enabled = undef,
+ $step = hiera('step'),
+ $glance_backend = downcase(hiera('glance_backend', 'swift')),
+) {
+
+ if $step >= 4 {
+ case $glance_backend {
+ 'swift': { $backend_store = 'glance.store.swift.Store' }
+ 'file': { $backend_store = 'glance.store.filesystem.Store' }
+ 'rbd': { $backend_store = 'glance.store.rbd.Store' }
+ default: { fail('Unrecognized glance_backend parameter.') }
+ }
+ $http_store = ['glance.store.http.Store']
+ $glance_store = concat($http_store, $backend_store)
+
+ # TODO: notifications, scrubber, etc.
+ include ::glance
+ include ::glance::config
+ class { '::glance::api':
+ known_stores => $glance_store,
+ manage_service => $manage_service,
+ enabled => $enabled,
+ }
+ include ::glance::notify::rabbitmq
+ include join(['::glance::backend::', $glance_backend])
+ }
+
+}
+
diff --git a/manifests/profile/base/glance/registry.pp b/manifests/profile/base/glance/registry.pp
new file mode 100644
index 0000000..bed4a5e
--- /dev/null
+++ b/manifests/profile/base/glance/registry.pp
@@ -0,0 +1,64 @@
+# Copyright 2016 Red Hat, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+# == Class: tripleo::profile::base::glance::registry
+#
+# Glance Registry profile for tripleo
+#
+# === Parameters
+#
+# [*sync_db*]
+# (Optional) Whether to run db sync
+# Defaults to undef
+#
+# [*manage_service*]
+# (Optional) Whether to manage the glance service
+# Defaults to undef
+#
+# [*enabled*]
+# (Optional) Whether to enable the glance service
+# Defaults to undef
+#
+# [*step*]
+# (Optional) The current step in deployment. See tripleo-heat-templates
+# for more details.
+# Defaults to hiera('step')
+#
+# [*glance_backend*]
+# (Optional) Glance backend(s) to use.
+# Defaults to downcase(hiera('glance_backend', 'swift'))
+#
+class tripleo::profile::base::glance::registry (
+ $sync_db = undef,
+ $manage_service = undef,
+ $enabled = undef,
+ $step = hiera('step'),
+ $glance_backend = downcase(hiera('glance_backend', 'swift')),
+) {
+
+ if $step >= 4 {
+ # TODO: notifications, scrubber, etc.
+ include ::glance
+ include ::glance::config
+ class { '::glance::registry' :
+ sync_db => $sync_db,
+ manage_service => $manage_service,
+ enabled => $enabled,
+ }
+ include ::glance::notify::rabbitmq
+ include join(['::glance::backend::', $glance_backend])
+ }
+
+}
+