Skip to content

Commit 20beb2a

Browse files
authored
Prep for v2.0.0-beta.3 (#766)
<!--Thanks for your contribution. See [CONTRIBUTING](CONTRIBUTING.md) for Pulumi's contribution guidelines. Help us merge your changes more quickly by adding more details such as labels, milestones, and reviewers.--> ### Proposed changes <!--Give us a brief description of what you've done and what it solves. --> Procedure: 1. `make prep RELEASE=v2.0.0-beta.3` 2. edit CHANGELOG ### Related issues (optional) <!--Refer to related PRs or issues: #1234, or 'Fixes #1234' or 'Closes #1234'. Or link to full URLs to issues or pull requests in other GitHub repositories. -->
1 parent 253a6e5 commit 20beb2a

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CHANGELOG
22
=========
33

4-
## Unreleased
4+
## 2.0.0-beta.3 (2024-11-27)
55

66
- Stack Controller: watch for delete events. [#756](https://github.com/pulumi/pulumi-kubernetes-operator/pull/756)
77
- Stack Controller: fix an issue where new commits weren't detected when using git sources. https://github.com/pulumi/pulumi-kubernetes-operator/issues/762

agent/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

3-
var Version string = "v2.0.0-beta.2"
3+
var Version string = "v2.0.0-beta.3"

deploy/deploy-operator-yaml/Pulumi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: |
55
config:
66
version: # The version to install of the Pulumi Kubernetes Operator.
77
type: string
8-
default: v2.0.0-beta.2
8+
default: v2.0.0-beta.3
99
resources:
1010
pko:
1111
type: kubernetes:kustomize/v2:Directory

deploy/helm/pulumi-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ icon: https://www.pulumi.com/logos/brand/avatar-on-white.svg
1010
type: application
1111

1212
version: 2.0.0
13-
appVersion: "v2.0.0-beta.2"
13+
appVersion: "v2.0.0-beta.3"
1414

1515
keywords:
1616
- pulumi
@@ -28,7 +28,7 @@ annotations:
2828
- Major version bump to 2.0.0
2929
artifacthub.io/images: |
3030
- name: pulumi-kubernetes-operator
31-
image: docker.io/pulumi-kubernetes-operator:v2.0.0-beta.2
31+
image: docker.io/pulumi-kubernetes-operator:v2.0.0-beta.3
3232
artifacthub.io/license: Apache-2.0
3333
artifacthub.io/links: |
3434
- name: website

deploy/helm/pulumi-operator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pulumi Kubernetes Operator - Helm Chart
22

3-
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=for-the-badge) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=for-the-badge) ![AppVersion: v2.0.0-beta.2](https://img.shields.io/badge/AppVersion-v2.0.0--beta.2-informational?style=for-the-badge)
3+
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=for-the-badge) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=for-the-badge) ![AppVersion: v2.0.0-beta.3](https://img.shields.io/badge/AppVersion-v2.0.0--beta.2-informational?style=for-the-badge)
44

55
## Description 📜
66

deploy/yaml/install.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28595,7 +28595,7 @@ spec:
2859528595
valueFrom:
2859628596
fieldRef:
2859728597
fieldPath: metadata.namespace
28598-
image: pulumi/pulumi-kubernetes-operator:v2.0.0-beta.2
28598+
image: pulumi/pulumi-kubernetes-operator:v2.0.0-beta.3
2859928599
imagePullPolicy: IfNotPresent
2860028600
livenessProbe:
2860128601
httpGet:

operator/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= v2.0.0-beta.2
6+
VERSION ?= v2.0.0-beta.3
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

operator/config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ kind: Kustomization
33
images:
44
- name: controller
55
newName: pulumi/pulumi-kubernetes-operator
6-
newTag: v2.0.0-beta.2
6+
newTag: v2.0.0-beta.3
77
resources:
88
- manager.yaml

operator/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

3-
var Version string = "v2.0.0-beta.2"
3+
var Version string = "v2.0.0-beta.3"

0 commit comments

Comments
 (0)