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 .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v5
with:
repository: pulp/pulp-operator
ref: 1.1.0
ref: 1.3.0
- name: Build bundle image
run: make bundle-build bundle-push BUNDLE_IMG=localhost:5001/pulp-operator-bundle:old
- name: Install the operator
Expand Down
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@

<!-- TOWNCRIER -->

## 2.0.0 (2026-03-17) {: #2.0.0 }


#### Bugfixes {: #2.0.0-bugfix }

- Set the default PostgreSQL version to 15 to ensure compatibility with Django 5 and Pulpcore 3.100+.
[#1589](https://github.com/pulp/pulp-operator/issues/1589)

---


## 1.3.0 (2026-01-27) {: #1.3.0 }


Expand Down
1 change: 0 additions & 1 deletion CHANGES/1589.bugfix

This file was deleted.

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 ?= 1.3.0
VERSION ?= 2.0.0
DATE := $(shell date '+%Y%m%d')
BUILD_VERSION := $(VERSION)-$(DATE)

Expand Down
8 changes: 4 additions & 4 deletions bundle/manifests/pulp-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ metadata:
capabilities: Full Lifecycle
categories: Integration & Delivery
containerImage: quay.io/pulp/pulp-operator:v1.0.0
createdAt: "2026-03-10T13:08:55Z"
createdAt: "2026-03-17T12:18:57Z"
description: Pulp is a platform for managing repositories of software packages
and making them available to a large number of consumers.
operators.operatorframework.io/builder: operator-sdk-v1.31.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/pulp/pulp-operator
support: Community
name: pulp-operator.v1.3.0
name: pulp-operator.v2.0.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1251,7 +1251,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: quay.io/pulp/pulp-operator:v1.3.0
image: quay.io/pulp/pulp-operator:v2.0.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1509,4 +1509,4 @@ spec:
name: pulp-redis
- image: docker.io/library/postgres:15
name: pulp-postgres
version: 1.3.0
version: 2.0.0
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/pulp/pulp-operator
newTag: v1.3.0
newTag: v2.0.0
Loading