forked from piraeusdatastore/piraeus-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default_images.yaml
50 lines (50 loc) · 1.73 KB
/
default_images.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
# This is the configuration for default images used by piraeus-operator
#
# "base" is the default repository prefix to use.
base: quay.io/piraeusdatastore
# "components" is a mapping of image placeholders to actual image names with tag.
# For example, the image name "linstor-controller" in the kustomize-resources will be replaced by:
# quay.io/piraeusdatastore/piraeus-server:v1.20.3
components:
linstor-controller:
tag: v1.20.3
image: piraeus-server
linstor-satellite:
tag: v1.20.3
image: piraeus-server
linstor-csi:
tag: v1.0.0
image: piraeus-csi
drbd-reactor:
tag: v1.0.0
image: drbd-reactor
ha-controller:
image: piraeus-ha-controller
tag: v1.1.2
drbd-shutdown-guard:
image: drbd-shutdown-guard
tag: v1.0.0
drbd-module-loader:
tag: v9.2.2
# The special "match" attribute is used to select an image based on the node's reported OS.
# The operator will first check the k8s node's ".status.nodeInfo.osImage" field, and compare it against the list
# here. If one matches, that specific image name will be used instead of the fallback image.
image: drbd9-jammy # Fallback image: chose a fairly recent kernel, which can hopefully compile whatever config is actually in use
match:
- osImage: CentOS Linux 7
image: drbd9-centos7
- osImage: CentOS Linux 8
image: drbd9-centos8
- osImage: AlmaLinux 8
image: drbd9-almalinux8
- osImage: Red Hat Enterprise Linux CoreOS
image: drbd9-almalinux8
- osImage: AlmaLinux 9
image: drbd9-almalinux9
- osImage: Ubuntu 18\.04
image: drbd9-bionic
- osImage: Ubuntu 20\.04
image: drbd9-focal
- osImage: Ubuntu 22\.04
image: drbd9-jammy