Skip to content

Commit

Permalink
prep for v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EronWright committed Oct 18, 2024
1 parent 4df9a88 commit 7d4e2b6
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags:
- v*.*.* # e.g. v2.0.0
- v*.*-*.* # e.g. v2.0-beta.1
- v*.*-*.* # e.g. v2.0-beta.0
- v*.*.*-*.* # e.g. v2.0.0-beta.1
env:
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
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-beta.0"
var Version string = "v2.0.0-beta.1"
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-beta.0
default: v2.0.0-beta.1
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-beta.0"
appVersion: "v2.0.0-beta.1"

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-beta.0
image: docker.io/pulumi-kubernetes-operator:v2.0.0-beta.1
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: 0.7.2](https://img.shields.io/badge/Version-0.7.2-informational?style=for-the-badge) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=for-the-badge) ![AppVersion: v2.0-beta.0](https://img.shields.io/badge/AppVersion-v2.0-beta.0-informational?style=for-the-badge)
![Version: 0.7.2](https://img.shields.io/badge/Version-0.7.2-informational?style=for-the-badge) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=for-the-badge) ![AppVersion: v2.0.0-beta.1](https://img.shields.io/badge/AppVersion-v2.0.0-beta.1-informational?style=for-the-badge)
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/pulumi-kubernetes-operator&style=for-the-badge)](https://artifacthub.io/packages/search?repo=pulumi-kubernetes-operator)

## 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 @@ -28534,7 +28534,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: pulumi/pulumi-kubernetes-operator:v2.0-beta.0
image: pulumi/pulumi-kubernetes-operator:v2.0.0-beta.1
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-beta.0
VERSION ?= v2.0.0-beta.1

# 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-beta.0
newTag: v2.0.0-beta.1
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-beta.0"
var Version string = "v2.0.0-beta.1"

0 comments on commit 7d4e2b6

Please sign in to comment.