580a454534
To check if qemu and libvirtd versions are same Change-Id: I54d7a18f690109cf5c39bce22aee7899b3035a02
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Copyright 2020 VEXXHOST, 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.
|
|
|
|
"""libvirtd-exporter Operator
|
|
|
|
This module maintains the operator for libvirtd-exporter,
|
|
it takes care of creating the appropriate daemonset
|
|
"""
|
|
|
|
|
|
from openstack_operator import utils
|
|
|
|
|
|
def create_or_resume(spec, **_):
|
|
"""Create and re-sync a libvirtd-exporter instance
|
|
|
|
This function is called when a new resource is created but also when we
|
|
start the service up for the first time.
|
|
"""
|
|
|
|
utils.create_or_update('libvirtd_exporter/daemonset.yml.j2',
|
|
spec=spec)
|
|
utils.create_or_update('libvirtd_exporter/podmonitor.yml.j2')
|
|
utils.create_or_update('libvirtd_exporter/prometheusrule.yml.j2')
|