Skip to content

Commit 9bb2e02

Browse files
Prepare release v0.15.0
1 parent 2da8530 commit 9bb2e02

File tree

8 files changed

+373
-120
lines changed

8 files changed

+373
-120
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ Please note this table only reports end-to-end tests suite coverage, others vers
6363
6464
| Temporal Operator | Temporal | Kubernetes |
6565
|-------------------|--------------------|----------------|
66+
| v0.15.x | v1.18.x to v1.21.x | v1.24 to v1.27 |
67+
| v0.14.x | v1.18.x to v1.21.x | v1.24 to v1.27 |
6668
| v0.13.x | v1.18.x to v1.20.x | v1.24 to v1.27 |
6769
| v0.12.x | v1.18.x to v1.20.x | v1.23 to v1.26 |
6870
| v0.11.x | v1.17.x to v1.19.x | v1.23 to v1.26 |
@@ -85,6 +87,7 @@ Please note this table only reports end-to-end tests suite coverage, others vers
8587
- [x] Cluster version upgrades.
8688
- [x] Cluster monitoring.
8789
- [x] Complete end2end test suite.
90+
- [x] Archival.
8891
- [ ] Auto scaling.
8992
- [ ] Multi cluster replication.
9093

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.0
1+
0.15.0

bundle/manifests/temporal-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ metadata:
119119
capabilities: Seamless Upgrades
120120
categories: Application Runtime, Developer Tools, AI/Machine Learning
121121
containerImage: ghcr.io/alexandrevilain/temporal-operator
122-
createdAt: "2023-07-23T10:18:46Z"
122+
createdAt: "2023-08-09T16:50:04Z"
123123
operators.operatorframework.io/builder: operator-sdk-v1.26.1
124124
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
125-
name: temporal-operator.v0.14.0
125+
name: temporal-operator.v0.15.0
126126
namespace: placeholder
127127
spec:
128128
apiservicedefinitions: {}
@@ -471,7 +471,7 @@ spec:
471471
- --leader-elect
472472
command:
473473
- /manager
474-
image: ghcr.io/alexandrevilain/temporal-operator:v0.14.0
474+
image: ghcr.io/alexandrevilain/temporal-operator:v0.15.0
475475
livenessProbe:
476476
httpGet:
477477
path: /healthz
@@ -576,7 +576,7 @@ spec:
576576
name: Temporal Community
577577
url: https://temporal.io/
578578
replaces: temporal-operator.v0.9.1
579-
version: 0.14.0
579+
version: 0.15.0
580580
webhookdefinitions:
581581
- admissionReviewVersions:
582582
- v1

bundle/manifests/temporal.io_temporalclusters.yaml

Lines changed: 274 additions & 84 deletions
Large diffs are not rendered by default.

bundle/manifests/temporal.io_temporalnamespaces.yaml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,65 @@ spec:
4343
description: AllowDeletion makes the controller delete the Temporal
4444
namespace if the CRD is deleted.
4545
type: boolean
46+
archival:
47+
description: Archival is a per-namespace archival configuration. If
48+
not set, the default cluster configuration is used.
49+
properties:
50+
history:
51+
description: History is the config for this namespace history
52+
archival.
53+
properties:
54+
enableRead:
55+
default: false
56+
description: EnableRead allows temporal to read from the archived
57+
Event History.
58+
type: boolean
59+
enabled:
60+
default: false
61+
description: Enabled defines if the archival is enabled by
62+
default for all namespaces or for a particular namespace
63+
(depends if it's for a TemporalCluster or a TemporalNamespace).
64+
type: boolean
65+
path:
66+
description: Path is ...
67+
type: string
68+
paused:
69+
default: false
70+
description: Paused defines if the archival is paused.
71+
type: boolean
72+
required:
73+
- enableRead
74+
- path
75+
- paused
76+
type: object
77+
visibility:
78+
description: Visibility is the config for this namespace visibility
79+
archival.
80+
properties:
81+
enableRead:
82+
default: false
83+
description: EnableRead allows temporal to read from the archived
84+
Event History.
85+
type: boolean
86+
enabled:
87+
default: false
88+
description: Enabled defines if the archival is enabled by
89+
default for all namespaces or for a particular namespace
90+
(depends if it's for a TemporalCluster or a TemporalNamespace).
91+
type: boolean
92+
path:
93+
description: Path is ...
94+
type: string
95+
paused:
96+
default: false
97+
description: Paused defines if the archival is paused.
98+
type: boolean
99+
required:
100+
- enableRead
101+
- path
102+
- paused
103+
type: object
104+
type: object
46105
clusterRef:
47106
description: Reference to the temporal cluster the namespace will
48107
be created.

0 commit comments

Comments
 (0)