diff --git a/CHANGELOG.md b/CHANGELOG.md index aa1b9a96..82e912e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/agent/version/version.go b/agent/version/version.go index f7f02944..f8a34395 100644 --- a/agent/version/version.go +++ b/agent/version/version.go @@ -1,3 +1,3 @@ package version -var Version string = "v2.0.0-beta.2" +var Version string = "v2.0.0-beta.3" diff --git a/deploy/deploy-operator-yaml/Pulumi.yaml b/deploy/deploy-operator-yaml/Pulumi.yaml index e1fa9ee1..1e1f5f6d 100644 --- a/deploy/deploy-operator-yaml/Pulumi.yaml +++ b/deploy/deploy-operator-yaml/Pulumi.yaml @@ -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 diff --git a/deploy/helm/pulumi-operator/Chart.yaml b/deploy/helm/pulumi-operator/Chart.yaml index 7c31d6d6..39768423 100755 --- a/deploy/helm/pulumi-operator/Chart.yaml +++ b/deploy/helm/pulumi-operator/Chart.yaml @@ -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 @@ -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 diff --git a/deploy/helm/pulumi-operator/README.md b/deploy/helm/pulumi-operator/README.md index 6da18efb..de13d31c 100644 --- a/deploy/helm/pulumi-operator/README.md +++ b/deploy/helm/pulumi-operator/README.md @@ -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 📜 diff --git a/deploy/yaml/install.yaml b/deploy/yaml/install.yaml index 39914828..dd501d42 100644 --- a/deploy/yaml/install.yaml +++ b/deploy/yaml/install.yaml @@ -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: diff --git a/operator/Makefile b/operator/Makefile index 336a8faa..680a462d 100644 --- a/operator/Makefile +++ b/operator/Makefile @@ -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") diff --git a/operator/config/manager/kustomization.yaml b/operator/config/manager/kustomization.yaml index 0015c1e5..0ab4a771 100644 --- a/operator/config/manager/kustomization.yaml +++ b/operator/config/manager/kustomization.yaml @@ -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 diff --git a/operator/version/version.go b/operator/version/version.go index f7f02944..f8a34395 100644 --- a/operator/version/version.go +++ b/operator/version/version.go @@ -1,3 +1,3 @@ package version -var Version string = "v2.0.0-beta.2" +var Version string = "v2.0.0-beta.3"