Skip to content

Commit

Permalink
Prep for v2.0.0-beta.3 (#766)
Browse files Browse the repository at this point in the history
<!--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. -->
  • Loading branch information
EronWright authored Nov 28, 2024
1 parent 253a6e5 commit 20beb2a
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
=========

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

- Stack Controller: watch for delete events. [#756](https://github.com/pulumi/pulumi-kubernetes-operator/pull/756)
- Stack Controller: fix an issue where new commits weren't detected when using git sources. https://github.com/pulumi/pulumi-kubernetes-operator/issues/762
Expand Down
2 changes: 1 addition & 1 deletion agent/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

var Version string = "v2.0.0-beta.2"
var Version string = "v2.0.0-beta.3"
2 changes: 1 addition & 1 deletion deploy/deploy-operator-yaml/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: |
config:
version: # The version to install of the Pulumi Kubernetes Operator.
type: string
default: v2.0.0-beta.2
default: v2.0.0-beta.3
resources:
pko:
type: kubernetes:kustomize/v2:Directory
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/pulumi-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ icon: https://www.pulumi.com/logos/brand/avatar-on-white.svg
type: application

version: 2.0.0
appVersion: "v2.0.0-beta.2"
appVersion: "v2.0.0-beta.3"

keywords:
- pulumi
Expand All @@ -28,7 +28,7 @@ annotations:
- Major version bump to 2.0.0
artifacthub.io/images: |
- name: pulumi-kubernetes-operator
image: docker.io/pulumi-kubernetes-operator:v2.0.0-beta.2
image: docker.io/pulumi-kubernetes-operator:v2.0.0-beta.3
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: website
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/pulumi-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pulumi Kubernetes Operator - Helm Chart

![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)
![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)

## Description 📜

Expand Down
2 changes: 1 addition & 1 deletion deploy/yaml/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28595,7 +28595,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: pulumi/pulumi-kubernetes-operator:v2.0.0-beta.2
image: pulumi/pulumi-kubernetes-operator:v2.0.0-beta.3
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion operator/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 ?= v2.0.0-beta.2
VERSION ?= v2.0.0-beta.3

# 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 operator/config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ kind: Kustomization
images:
- name: controller
newName: pulumi/pulumi-kubernetes-operator
newTag: v2.0.0-beta.2
newTag: v2.0.0-beta.3
resources:
- manager.yaml
2 changes: 1 addition & 1 deletion operator/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

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

0 comments on commit 20beb2a

Please sign in to comment.