Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 0.7.0
VERSION ?= 0.8.0

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=synapse-operator
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.40.0
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.41.1
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4

Expand Down
10 changes: 5 additions & 5 deletions bundle/manifests/synapse-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ metadata:
capabilities: Basic Install
categories: Developer Tools
containerImage: quay.io/opdev/synapse-operator
createdAt: "2025-07-08T10:25:01Z"
createdAt: "2025-08-15T10:29:51Z"
description: Deploys and manages the lifecycle of Synapse servers and their associated
components (bridges, databases, ...). Synapse is the reference Matrix homeserver
implementation.
operators.operatorframework.io/builder: operator-sdk-v1.40.0
operators.operatorframework.io/builder: operator-sdk-v1.41.1
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
repository: https://github.com/opdev/synapse-operator
name: synapse-operator.v0.7.0
name: synapse-operator.v0.8.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -231,7 +231,7 @@ spec:
- --health-probe-bind-address=:8081
command:
- /manager
image: quay.io/opdev/synapse-operator:v0.7.0
image: quay.io/opdev/synapse-operator:v0.8.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -328,4 +328,4 @@ spec:
minKubeVersion: 1.24.0
provider:
name: Community
version: 0.7.0
version: 0.8.0
2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ annotations:
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: synapse-operator
operators.operatorframework.io.bundle.channels.v1: alpha
operators.operatorframework.io.metrics.builder: operator-sdk-v1.40.0
operators.operatorframework.io.metrics.builder: operator-sdk-v1.41.1
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v4

Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/opdev/synapse-operator
newTag: v0.7.0
newTag: v0.8.0
16 changes: 12 additions & 4 deletions install/synapse-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
controller-gen.kubebuilder.io/version: v0.18.0
name: heisenbridges.synapse.opdev.io
spec:
group: synapse.opdev.io
Expand Down Expand Up @@ -116,7 +116,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
controller-gen.kubebuilder.io/version: v0.18.0
name: mautrixsignals.synapse.opdev.io
spec:
group: synapse.opdev.io
Expand Down Expand Up @@ -223,7 +223,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
controller-gen.kubebuilder.io/version: v0.18.0
name: synapses.synapse.opdev.io
spec:
group: synapse.opdev.io
Expand Down Expand Up @@ -299,6 +299,11 @@ spec:
Holds the required values for the creation of a homeserver.yaml
configuration file by the Synapse Operator
properties:
enableRegistration:
default: false
description: Whether new user registration is allowed. Defaults
to false.
type: boolean
reportStats:
description: Whether or not to report anonymized homeserver
usage statistics
Expand Down Expand Up @@ -370,6 +375,9 @@ spec:
homeserverConfiguration:
description: Holds configuration information for Synapse
properties:
registrationEnabled:
description: Whether new user registration is enabled
type: boolean
reportStats:
description: Whether or not to report anonymized homeserver usage
statistics
Expand Down Expand Up @@ -879,7 +887,7 @@ spec:
- --health-probe-bind-address=:8081
command:
- /manager
image: quay.io/opdev/synapse-operator:v0.7.0
image: quay.io/opdev/synapse-operator:v0.8.0
livenessProbe:
httpGet:
path: /healthz
Expand Down