blob: 67d9c136ed21c97170cc0cb69741eb0fa0f2dfca [file] [log] [blame]
Mohammed Naser3595fdd2023-03-08 18:38:55 +00001# Copyright (c) 2022 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15_rabbitmq_spec:
Mohammed Naser31171f42023-03-19 00:10:46 +000016 image: "{{ atmosphere_images['rabbitmq_server'] | vexxhost.kubernetes.docker_image('ref') }}"
Mohammed Naser3595fdd2023-03-08 18:38:55 +000017 affinity:
18 nodeAffinity:
19 requiredDuringSchedulingIgnoredDuringExecution:
20 nodeSelectorTerms:
21 - matchExpressions:
22 - key: openstack-control-plane
23 operator: In
24 values:
25 - enabled
26 override: {}
27 persistence:
28 storage: 10Gi
29 rabbitmq:
30 additionalConfig: |
31 vm_memory_high_watermark.relative = 0.9
32 replicas: 1
33 resources:
Mohammed Naser3595fdd2023-03-08 18:38:55 +000034 requests:
35 cpu: 500m
36 memory: 1Gi
37 secretBackend: {}
38 service:
39 type: ClusterIP
40 terminationGracePeriodSeconds: 15
41 tls: {}