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

Prepare for v1.14.0 release #518

Merged
merged 2 commits into from
Nov 8, 2023
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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ CHANGELOG
=========

## HEAD (unreleased)

## 1.14.0 (2023-11-08)
- Changed indentation in deploy/helm/pulumi-operator/templates/deployment.yaml for volumes and volumeMounts.
- Use a separate PULUMI_HOME for each stack. [#490](https://github.com/pulumi/pulumi-kubernetes-operator/pull/490)
- Use Go v1.21 for builds. [#504](https://github.com/pulumi/pulumi-kubernetes-operator/pull/504)
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.13.0";
public const string DefaultOperatorVersion = "v1.13.0";
public const string DefaultCRDVersion = "v1.14.0";
public const string DefaultOperatorVersion = "v1.14.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.13.0"
const DefaultOperatorVersion = "v1.13.0"
const DefaultCRDVersion = "v1.14.0"
const DefaultOperatorVersion = "v1.14.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.13.0"
DEFAULT_OPERATOR_VERSION = "v1.13.0"
DEFAULT_CRD_VERSION = "v1.14.0"
DEFAULT_OPERATOR_VERSION = "v1.14.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.13.0";
const defaultOperatorVersion = "v1.13.0";
const defaultCRDVersion = "v1.14.0";
const defaultOperatorVersion = "v1.14.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.13.0
image: pulumi/pulumi-kubernetes-operator:v1.14.0
args:
- "--zap-level=error"
- "--zap-time-encoding=iso8601"
Expand Down
Loading