File tree Expand file tree Collapse file tree 4 files changed +39
-9
lines changed
packages/system/piraeus-operator/charts/piraeus Expand file tree Collapse file tree 4 files changed +39
-9
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ name: piraeus
3
3
description : |
4
4
The Piraeus Operator manages software defined storage clusters using LINSTOR in Kubernetes.
5
5
type : application
6
- version : 2.6.0
7
- appVersion : " v2.6.0 "
6
+ version : 2.7.1
7
+ appVersion : " v2.7.1 "
8
8
maintainers :
9
9
- name : Piraeus Datastore
10
10
url : https://piraeus.io
Original file line number Diff line number Diff line change @@ -17,20 +17,20 @@ data:
17
17
# quay.io/piraeusdatastore/piraeus-server:v1.24.2
18
18
components:
19
19
linstor-controller:
20
- tag: v1.29.1
20
+ tag: v1.29.2
21
21
image: piraeus-server
22
22
linstor-satellite:
23
23
# Pin with digest to ensure we pull the version with downgraded thin-send-recv
24
- tag: v1.29.1
24
+ tag: v1.29.2
25
25
image: piraeus-server
26
26
linstor-csi:
27
- tag: v1.6.3
27
+ tag: v1.6.4
28
28
image: piraeus-csi
29
29
drbd-reactor:
30
- tag: v1.4.1
30
+ tag: v1.6.0
31
31
image: drbd-reactor
32
32
ha-controller:
33
- tag: v1.2.1
33
+ tag: v1.2.2
34
34
image: piraeus-ha-controller
35
35
drbd-shutdown-guard:
36
36
tag: v1.0.0
@@ -39,13 +39,13 @@ data:
39
39
tag: v0.11
40
40
image: ktls-utils
41
41
drbd-module-loader:
42
- tag: v9.2.11
42
+ tag: v9.2.12
43
43
# The special "match" attribute is used to select an image based on the node's reported OS.
44
44
# The operator will first check the k8s node's ".status.nodeInfo.osImage" field, and compare it against the list
45
45
# here. If one matches, that specific image name will be used instead of the fallback image.
46
46
image: drbd9-noble # Fallback image: chose a recent kernel, which can hopefully compile whatever config is actually in use
47
47
match:
48
- - osImage: Red Hat Enterprise Linux 7\.
48
+ - osImage: Red Hat Enterprise Linux Server 7\.
49
49
image: drbd9-centos7
50
50
- osImage: Red Hat Enterprise Linux 8\.
51
51
image: drbd9-almalinux8
Original file line number Diff line number Diff line change @@ -830,6 +830,19 @@ spec:
830
830
The daemon uses the TLS certificate and key to establish secure connections on behalf of DRBD.
831
831
type : boolean
832
832
type : object
833
+ ipFamilies :
834
+ description : |-
835
+ IPFamilies configures the IP Family (IPv4 or IPv6) to use to connect to the LINSTOR Satellite.
836
+
837
+ If set, the control traffic between LINSTOR Controller and Satellite will use only the given IP Family.
838
+ If not set, the Operator will configure all families found in the Satellites Pods' Status.
839
+ items :
840
+ description : IPFamily represents the IP Family (IPv4 or IPv6).
841
+ enum :
842
+ - IPv4
843
+ - IPv6
844
+ type : string
845
+ type : array
833
846
nodeAffinity :
834
847
description : |-
835
848
NodeAffinity selects which LinstorSatellite resources this spec should be applied to.
@@ -1426,6 +1439,19 @@ spec:
1426
1439
The daemon uses the TLS certificate and key to establish secure connections on behalf of DRBD.
1427
1440
type : boolean
1428
1441
type : object
1442
+ ipFamilies :
1443
+ description : |-
1444
+ IPFamilies configures the IP Family (IPv4 or IPv6) to use to connect to the LINSTOR Satellite.
1445
+
1446
+ If set, the control traffic between LINSTOR Controller and Satellite will use only the given IP Family.
1447
+ If not set, the Operator will configure all families found in the Satellites Pods' Status.
1448
+ items :
1449
+ description : IPFamily represents the IP Family (IPv4 or IPv6).
1450
+ enum :
1451
+ - IPv4
1452
+ - IPv6
1453
+ type : string
1454
+ type : array
1429
1455
patches :
1430
1456
description : |-
1431
1457
Patches is a list of kustomize patches to apply.
Original file line number Diff line number Diff line change 93
93
serviceAccountName : {{ include "piraeus-operator.serviceAccountName" . }}
94
94
terminationGracePeriodSeconds : 10
95
95
priorityClassName : {{ .Values.priorityClassName | default "system-cluster-critical" }}
96
+ nodeSelector :
97
+ {{- toYaml .Values.nodeSelector | nindent 8 }}
96
98
tolerations :
97
99
{{- toYaml .Values.tolerations | nindent 8 }}
100
+ affinity :
101
+ {{- toYaml .Values.affinity | nindent 8 }}
98
102
volumes :
99
103
- name : cert
100
104
secret :
You can’t perform that action at this time.
0 commit comments