openstack-ansible-ceph_client/tasks/ceph_immutable_object_cache.yml
Andrew Bonney 2bb6cdf481 Don't load systemd parent service for object cache
We use the systemd_service role to load a drop-in for all
services which fall under the 'ceph-immutable-object-store'
banner, but this isn't a service in its own right.

Attempting to load the service on Ubuntu Jammy results in
an error, so we prevent loading it, and leave enabling of the
individual service up to an existing later task.

Change-Id: If9c46d22f42bc3765b217b0fbc736331bf337557
2024-02-12 13:51:03 +00:00

55 lines
1.9 KiB
YAML

# Copyright 2023, BBC R&D
#
# 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.
- name: Set permissions on immutable object cache directory
file:
path: "{{ ceph_immutable_object_cache_dir }}"
owner: "{{ ceph_immutable_object_cache_owner }}"
group: "{{ ceph_immutable_object_cache_group }}"
mode: "{{ ceph_immutable_object_cache_mode }}"
- name: Add libvirt-qemu user to ceph group
user:
append: true
name: "{{ ceph_immutable_object_cache_group }}"
groups: "ceph"
- name: Create ceph immutable object cache service overrides
import_role:
name: systemd_service
vars:
systemd_services:
- service_name: "{{ ceph_immutable_object_cache_service_name }}"
systemd_overrides_only: true
load: false
systemd_overrides:
Service:
UMask: "{{ ceph_immutable_object_cache_umask }}"
ExecStart: >-
{{
[
'',
'/usr/bin/ceph-immutable-object-cache -f --cluster ${CLUSTER} --name client.immutable-object-cache --setuser ' ~
ceph_immutable_object_cache_owner ~
' --setgroup ' ~
ceph_immutable_object_cache_group
]
}}
- name: Ensure ceph immutable object cache service is running
service:
name: "{{ ceph_immutable_object_cache_service_name }}1.service"
state: started
enabled: true