blob: dbefa79c927eba39bb45159de6bfaa9ad066c183 [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:
vexxhost-bot4f218dd2024-04-19 18:53:23 -040017 server:
18 log_level: warn
Mohammed Naser11937742023-03-01 20:37:04 +000019 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000020 registry: "{{ atmosphere_images['loki'] | vexxhost.kubernetes.docker_image('domain') }}"
21 repository: "{{ atmosphere_images['loki'] | vexxhost.kubernetes.docker_image('path') }}"
22 tag: "{{ atmosphere_images['loki'] | vexxhost.kubernetes.docker_image('tag') }}"
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +000023 auth_enabled: false
24 commonConfig:
25 replication_factor: 1
26 storage:
27 type: filesystem
28 test:
29 enabled: false
30 monitoring:
31 selfMonitoring:
32 enabled: false
33 grafanaAgent:
34 installOperator: false
35 lokiCanary:
36 enabled: false
37 singleBinary:
38 replicas: 1
39 nodeSelector:
40 openstack-control-plane: enabled
41 persistence:
Mohammed Naser62301c42023-10-16 13:06:27 -040042 size: 256Gi
Mohammed Naser11937742023-03-01 20:37:04 +000043 gateway:
44 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000045 registry: "{{ atmosphere_images['loki_gateway'] | vexxhost.kubernetes.docker_image('domain') }}"
46 repository: "{{ atmosphere_images['loki_gateway'] | vexxhost.kubernetes.docker_image('path') }}"
47 tag: "{{ atmosphere_images['loki_gateway'] | vexxhost.kubernetes.docker_image('tag') }}"
Michiel Piscaerd450dba2023-10-18 14:24:33 +020048 nodeSelector:
49 openstack-control-plane: enabled