Skip to content

Commit 5031d72

Browse files
authored
Merge pull request #155 from projectsyn/commodore-renovate/ghcr.io-k8up-io-k8up-2.x
Update ghcr.io/k8up-io/k8up Docker tag to v2.13.0
2 parents e6ddc75 + da7e538 commit 5031d72

3 files changed

Lines changed: 123 additions & 3 deletions

File tree

class/defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ parameters:
1212
k8up:
1313
registry: ghcr.io
1414
repository: k8up-io/k8up
15-
tag: v2.11.3
15+
tag: v2.13.0
1616
pullPolicy: IfNotPresent
1717
oc:
1818
registry: quay.io

tests/golden/defaults/backup-k8up/backup-k8up/01_k8up_helmchart/k8up/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- operator
2525
env:
2626
- name: BACKUP_IMAGE
27-
value: ghcr.io/k8up-io/k8up:v2.11.3
27+
value: ghcr.io/k8up-io/k8up:v2.13.0
2828
- name: TZ
2929
value: Etc/UTC
3030
- name: BACKUP_ENABLE_LEADER_ELECTION
@@ -43,7 +43,7 @@ spec:
4343
value: k8up.io/backupcommand
4444
- name: BACKUP_BACKOFFLIMIT
4545
value: '2'
46-
image: ghcr.io/k8up-io/k8up:v2.11.3
46+
image: ghcr.io/k8up-io/k8up:v2.13.0
4747
imagePullPolicy: IfNotPresent
4848
livenessProbe:
4949
httpGet:

tests/golden/defaults/backup-k8up/backup-k8up/02_k8up_crds.yaml

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,6 +1518,10 @@ spec:
15181518
type: object
15191519
type: array
15201520
type: object
1521+
clusterName:
1522+
description: ClusterName sets the kubernetes cluster name to send
1523+
to pushgateway for grouping metrics
1524+
type: string
15211525
failedJobsHistoryLimit:
15221526
description: |-
15231527
FailedJobsHistoryLimit amount of failed jobs to keep for later analysis.
@@ -1530,6 +1534,58 @@ spec:
15301534

15311535
Deprecated: Use FailedJobsHistoryLimit and SuccessfulJobsHistoryLimit respectively.
15321536
type: integer
1537+
labelSelectors:
1538+
description: |-
1539+
LabelSelectors is a list of selectors that we filter for.
1540+
When defined, only PVCs and PreBackupPods matching them are backed up.
1541+
items:
1542+
description: |-
1543+
A label selector is a label query over a set of resources. The result of matchLabels and
1544+
matchExpressions are ANDed. An empty label selector matches all objects. A null
1545+
label selector matches no objects.
1546+
properties:
1547+
matchExpressions:
1548+
description: matchExpressions is a list of label selector
1549+
requirements. The requirements are ANDed.
1550+
items:
1551+
description: |-
1552+
A label selector requirement is a selector that contains values, a key, and an operator that
1553+
relates the key and values.
1554+
properties:
1555+
key:
1556+
description: key is the label key that the selector
1557+
applies to.
1558+
type: string
1559+
operator:
1560+
description: |-
1561+
operator represents a key's relationship to a set of values.
1562+
Valid operators are In, NotIn, Exists and DoesNotExist.
1563+
type: string
1564+
values:
1565+
description: |-
1566+
values is an array of string values. If the operator is In or NotIn,
1567+
the values array must be non-empty. If the operator is Exists or DoesNotExist,
1568+
the values array must be empty. This array is replaced during a strategic
1569+
merge patch.
1570+
items:
1571+
type: string
1572+
type: array
1573+
required:
1574+
- key
1575+
- operator
1576+
type: object
1577+
type: array
1578+
matchLabels:
1579+
additionalProperties:
1580+
type: string
1581+
description: |-
1582+
matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
1583+
map is equivalent to an element of matchExpressions, whose key field is "key", the
1584+
operator is "In", and the values array contains only "value". The requirements are ANDed.
1585+
type: object
1586+
type: object
1587+
x-kubernetes-map-type: atomic
1588+
type: array
15331589
podConfigRef:
15341590
description: |-
15351591
PodConfigRef describes the pod spec with wich this action shall be executed.
@@ -2486,6 +2542,10 @@ spec:
24862542
type: object
24872543
type: array
24882544
type: object
2545+
clusterName:
2546+
description: ClusterName sets the kubernetes cluster name to send
2547+
to pushgateway for grouping metrics
2548+
type: string
24892549
failedJobsHistoryLimit:
24902550
description: |-
24912551
FailedJobsHistoryLimit amount of failed jobs to keep for later analysis.
@@ -21954,6 +22014,10 @@ spec:
2195422014
type: object
2195522015
type: array
2195622016
type: object
22017+
clusterName:
22018+
description: ClusterName sets the kubernetes cluster name to
22019+
send to pushgateway for grouping metrics
22020+
type: string
2195722021
concurrentRunsAllowed:
2195822022
type: boolean
2195922023
failedJobsHistoryLimit:
@@ -21968,6 +22032,58 @@ spec:
2196822032

2196922033
Deprecated: Use FailedJobsHistoryLimit and SuccessfulJobsHistoryLimit respectively.
2197022034
type: integer
22035+
labelSelectors:
22036+
description: |-
22037+
LabelSelectors is a list of selectors that we filter for.
22038+
When defined, only PVCs and PreBackupPods matching them are backed up.
22039+
items:
22040+
description: |-
22041+
A label selector is a label query over a set of resources. The result of matchLabels and
22042+
matchExpressions are ANDed. An empty label selector matches all objects. A null
22043+
label selector matches no objects.
22044+
properties:
22045+
matchExpressions:
22046+
description: matchExpressions is a list of label selector
22047+
requirements. The requirements are ANDed.
22048+
items:
22049+
description: |-
22050+
A label selector requirement is a selector that contains values, a key, and an operator that
22051+
relates the key and values.
22052+
properties:
22053+
key:
22054+
description: key is the label key that the selector
22055+
applies to.
22056+
type: string
22057+
operator:
22058+
description: |-
22059+
operator represents a key's relationship to a set of values.
22060+
Valid operators are In, NotIn, Exists and DoesNotExist.
22061+
type: string
22062+
values:
22063+
description: |-
22064+
values is an array of string values. If the operator is In or NotIn,
22065+
the values array must be non-empty. If the operator is Exists or DoesNotExist,
22066+
the values array must be empty. This array is replaced during a strategic
22067+
merge patch.
22068+
items:
22069+
type: string
22070+
type: array
22071+
required:
22072+
- key
22073+
- operator
22074+
type: object
22075+
type: array
22076+
matchLabels:
22077+
additionalProperties:
22078+
type: string
22079+
description: |-
22080+
matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
22081+
map is equivalent to an element of matchExpressions, whose key field is "key", the
22082+
operator is "In", and the values array contains only "value". The requirements are ANDed.
22083+
type: object
22084+
type: object
22085+
x-kubernetes-map-type: atomic
22086+
type: array
2197122087
podConfigRef:
2197222088
description: |-
2197322089
PodConfigRef describes the pod spec with wich this action shall be executed.
@@ -22786,6 +22902,10 @@ spec:
2278622902
type: object
2278722903
type: array
2278822904
type: object
22905+
clusterName:
22906+
description: ClusterName sets the kubernetes cluster name to
22907+
send to pushgateway for grouping metrics
22908+
type: string
2278922909
concurrentRunsAllowed:
2279022910
type: boolean
2279122911
failedJobsHistoryLimit:

0 commit comments

Comments
 (0)