blob: f00b0ab5997f652557a231344a7f0c6498b9a263 [file] [log] [blame]
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +00001# Copyright (c) 2023 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_loki_helm_values:
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +000016 loki:
Mohammed Naser11937742023-03-01 20:37:04 +000017 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000018 registry: "{{ atmosphere_images['loki'] | vexxhost.kubernetes.docker_image('domain') }}"
19 repository: "{{ atmosphere_images['loki'] | vexxhost.kubernetes.docker_image('path') }}"
20 tag: "{{ atmosphere_images['loki'] | vexxhost.kubernetes.docker_image('tag') }}"
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +000021 auth_enabled: false
22 commonConfig:
23 replication_factor: 1
24 storage:
25 type: filesystem
26 test:
27 enabled: false
28 monitoring:
29 selfMonitoring:
30 enabled: false
31 grafanaAgent:
32 installOperator: false
33 lokiCanary:
34 enabled: false
35 singleBinary:
36 replicas: 1
37 nodeSelector:
38 openstack-control-plane: enabled
39 persistence:
Mohammed Naser62301c42023-10-16 13:06:27 -040040 size: 256Gi
Mohammed Naser11937742023-03-01 20:37:04 +000041 gateway:
42 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000043 registry: "{{ atmosphere_images['loki_gateway'] | vexxhost.kubernetes.docker_image('domain') }}"
44 repository: "{{ atmosphere_images['loki_gateway'] | vexxhost.kubernetes.docker_image('path') }}"
45 tag: "{{ atmosphere_images['loki_gateway'] | vexxhost.kubernetes.docker_image('tag') }}"