Skip to content

Commit

Permalink
Prepare manifests and Changelog for v1.12.0 release (#446)
Browse files Browse the repository at this point in the history
* Update manifests to v1.12.0 of operator image

* Prepare CHANGELOG for v1.12.0 release
  • Loading branch information
rquitales authored May 10, 2023
1 parent b138be4 commit c946ea2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ CHANGELOG

## HEAD (unreleased)

## 1.12.0 (2023-05-09)
- Enable refreshing dynamic credentials in provider state using targeted
stack refresh [#443](https://github.com/pulumi/pulumi-kubernetes-operator/pull/443)
- Update to [Pulumi SDK v3.66.0](https://github.com/pulumi/pulumi/releases/tag/v3.66.0) and the base
image of the same version.
- Added lastUpdate state update to ensure that synchronized commits display a succeeded status.
[#429](https://github.com/pulumi/pulumi-kubernetes-operator/pull/429)

## 1.11.5 (2023-04-27)
Update to [Pulumi SDK v3.65.1](https://github.com/pulumi/pulumi/releases/tag/v3.65.1) and the base
Expand All @@ -30,8 +33,6 @@ Update to [Pulumi SDK v3.65.0](https://github.com/pulumi/pulumi/releases/tag/v3.
image of the same version, fixing [issue
#411](https://github.com/pulumi/pulumi-kubernetes-operator/issues/411)
[#422](https://github.com/pulumi/pulumi-kubernetes-operator/pull/422)
- Added lastUpdate state update to ensure that synchronized commits display a succeeded status.
[#429](https://github.com/pulumi/pulumi-kubernetes-operator/pull/429)

## 1.11.1 (2023-02-08)

Expand Down
4 changes: 2 additions & 2 deletions deploy/deploy-operator-cs/MyStack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

class MyStack : Stack
{
public const string DefaultCRDVersion = "v1.11.5";
public const string DefaultOperatorVersion = "v1.11.5";
public const string DefaultCRDVersion = "v1.12.0";
public const string DefaultOperatorVersion = "v1.12.0";

public MyStack()
{
Expand Down
4 changes: 2 additions & 2 deletions deploy/deploy-operator-go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

const DefaultCRDVersion = "v1.11.5"
const DefaultOperatorVersion = "v1.11.5"
const DefaultCRDVersion = "v1.12.0"
const DefaultOperatorVersion = "v1.12.0"

func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
Expand Down
4 changes: 2 additions & 2 deletions deploy/deploy-operator-py/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from pulumi.resource import ResourceOptions
import pulumi_kubernetes as kubernetes

DEFAULT_CRD_VERSION = "v1.11.5"
DEFAULT_OPERATOR_VERSION = "v1.11.5"
DEFAULT_CRD_VERSION = "v1.12.0"
DEFAULT_OPERATOR_VERSION = "v1.12.0"

conf = pulumi.Config()
namespace = conf.get("namespace", "default")
Expand Down
4 changes: 2 additions & 2 deletions deploy/deploy-operator-ts/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as pulumi from "@pulumi/pulumi";
import * as kubernetes from "@pulumi/kubernetes";

const defaultCRDVersion = "v1.11.5";
const defaultOperatorVersion = "v1.11.5";
const defaultCRDVersion = "v1.12.0";
const defaultOperatorVersion = "v1.12.0";

const config = new pulumi.Config();
const deployNamespace = config.get("namespace") || 'default';
Expand Down
2 changes: 1 addition & 1 deletion deploy/yaml/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
emptyDir: {}
containers:
- name: pulumi-kubernetes-operator
image: pulumi/pulumi-kubernetes-operator:v1.11.5
image: pulumi/pulumi-kubernetes-operator:v1.12.0
args:
- "--zap-level=error"
- "--zap-time-encoding=iso8601"
Expand Down

0 comments on commit c946ea2

Please sign in to comment.