Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for v2.0.0-beta.3 #766

Merged
merged 1 commit into from
Nov 28, 2024
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 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"