-
Notifications
You must be signed in to change notification settings - Fork 217
/
Copy pathmultispec.yml
141 lines (131 loc) · 4.76 KB
/
multispec.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
version: 1
specs:
distroinfo:
fedora39:
distros:
- fedora-39-x86_64
s2i_base: quay.io/fedora/s2i-core
org: "fedora"
prod: "fedora"
openshift_tags: "database,postgresql,postgresql{{ spec.short }},postgresql-{{ spec.short }}"
redhat_component: "postgresql-{{ spec.short }}-container"
img_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
pkgs: "postgresql-server postgresql-contrib"
fedora40:
distros:
- fedora-40-x86_64
s2i_base: quay.io/fedora/s2i-core
org: "fedora"
prod: "fedora"
openshift_tags: "database,postgresql,postgresql{{ spec.short }},postgresql-{{ spec.short }}"
redhat_component: "postgresql-{{ spec.short }}-container"
img_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
pkgs: "postgresql-server postgresql-contrib"
rhel8:
distros:
- rhel-8-x86_64
s2i_base: ubi8/s2i-core
org: "rhel8"
prod: "rhel8"
openshift_tags: "database,postgresql,postgresql{{ spec.short }},postgresql-{{ spec.short }}"
redhat_component: "postgresql-{{ spec.short }}-container"
img_name: "{{ spec.org }}/postgresql-{{ spec.short }}"
pkgs: "postgresql-server postgresql-contrib"
environment_setup: >-4
yum -y module enable postgresql:{{ spec.version }} && \
post_install: >-4
(yum -y reinstall tzdata || yum -y update tzdata ) && \
rhel9:
distros:
- rhel-9-x86_64
s2i_base: ubi9/s2i-core
org: "rhel9"
prod: "rhel9"
openshift_tags: "database,postgresql,postgresql{{ spec.short }},postgresql-{{ spec.short }}"
redhat_component: "postgresql-{{ spec.short }}-container"
img_name: "{{ spec.org }}/postgresql-{{ spec.short }}"
pkgs: "postgresql-server postgresql-contrib"
environment_setup: >-4
{ yum -y module enable postgresql:{{ spec.version }} || :; } && \
post_install: >-4
(yum -y reinstall tzdata || yum -y update tzdata ) && \
c9s:
distros:
- centos-stream-9-x86_64
s2i_base: quay.io/sclorg/s2i-core-c9s:c9s
org: "sclorg"
prod: "c9s"
openshift_tags: "database,postgresql,postgresql{{ spec.short }},postgresql-{{ spec.short }}"
redhat_component: "postgresql-{{ spec.short }}-container"
img_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
pkgs: "postgresql-server postgresql-contrib"
environment_setup: >-4
{ yum -y module enable postgresql:{{ spec.version }} || :; } && \
c10s:
distros:
- centos-stream-10-x86_64
s2i_base: quay.io/sclorg/s2i-core-c10s:c10s
org: "sclorg"
prod: "c10s"
openshift_tags: "database,postgresql,postgresql{{ spec.short }},postgresql-{{ spec.short }}"
redhat_component: "postgresql-{{ spec.short }}-container"
img_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
pkgs: "postgresql{{ spec.short }}-server postgresql{{ spec.short }}-contrib postgresql{{ spec.short }}-upgrade"
check_pkgs: "postgresql-server postgresql-contrib postgresql-upgrade"
version:
"12":
version: "12"
prev_version: "10"
short: "12"
prev_short: "10"
common_image_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
rhel_image_name: "rhel8/postgresql-{{ spec.short }}"
latest_fedora: "f38"
"13":
version: "13"
prev_version: "12"
short: "13"
prev_short: "12"
common_image_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
c9s_image_name: "sclorg/postgresql-{{ spec.short }}-c9s"
rhel_image_name: "rhel8/postgresql-{{ spec.short }}"
latest_fedora: "f38"
"15":
version: "15"
prev_version: "13"
short: "15"
prev_short: "13"
common_image_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
rhel_image_name: "rhel8/postgresql-{{ spec.short }}"
latest_fedora: "f40"
"16":
version: "16"
prev_version: "15"
short: "16"
prev_short: "15"
common_image_name: "{{ spec.org }}/postgresql-{{ spec.short }}-{{ spec.prod }}"
c9s_image_name: "sclorg/postgresql-{{ spec.short }}-c9s"
latest_fedora: "f40"
matrix:
include:
- version: "12"
distros:
- rhel-8-x86_64
- version: "13"
distros:
- rhel-8-x86_64
- rhel-9-x86_64
- centos-stream-9-x86_64
- version: "15"
distros:
- rhel-8-x86_64
- rhel-9-x86_64
- centos-stream-9-x86_64
- fedora-40-x86_64
- version: "16"
distros:
- rhel-8-x86_64
- rhel-9-x86_64
- centos-stream-9-x86_64
- fedora-40-x86_64
- centos-stream-10-x86_64