Skip to content

Commit

Permalink
Merge pull request #485 from alexandrevilain/release/v0.15.2
Browse files Browse the repository at this point in the history
Prepare release v0.15.2
  • Loading branch information
alexandrevilain authored Aug 29, 2023
2 parents 306cab2 + a162f9d commit 7370b81
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 11 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.1
0.15.2
8 changes: 4 additions & 4 deletions bundle/manifests/temporal-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ metadata:
capabilities: Seamless Upgrades
categories: Application Runtime, Developer Tools, AI/Machine Learning
containerImage: ghcr.io/alexandrevilain/temporal-operator
createdAt: "2023-08-18T05:47:35Z"
createdAt: "2023-08-28T19:05:26Z"
operators.operatorframework.io/builder: operator-sdk-v1.26.1
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
name: temporal-operator.v0.15.1
name: temporal-operator.v0.15.2
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -471,7 +471,7 @@ spec:
- --leader-elect
command:
- /manager
image: ghcr.io/alexandrevilain/temporal-operator:v0.15.1
image: ghcr.io/alexandrevilain/temporal-operator:v0.15.2
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -576,7 +576,7 @@ spec:
name: Temporal Community
url: https://temporal.io/
replaces: temporal-operator.v0.9.1
version: 0.15.1
version: 0.15.2
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
105 changes: 104 additions & 1 deletion bundle/manifests/temporal.io_temporalclusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,10 @@ spec:
account to assume an AWS Identity and Access Management
(IAM) role.
type: string
s3ForcePathStyle:
description: Use s3ForcePathStyle if you want to use s3
path style.
type: boolean
required:
- region
type: object
Expand Down Expand Up @@ -425,13 +429,100 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: array
jobResources:
description: JobResources allows set resources for setup/update jobs.
properties:
claims:
description: "Claims lists the names of resources, defined in
spec.resourceClaims, that are used by this container. \n This
is an alpha field and requires enabling the DynamicResourceAllocation
feature gate. \n This field is immutable. It can only be set
for containers."
items:
description: ResourceClaim references one entry in PodSpec.ResourceClaims.
properties:
name:
description: Name must match the name of one entry in pod.spec.resourceClaims
of the Pod where this field is used. It makes that resource
available inside a container.
type: string
required:
- name
type: object
type: array
x-kubernetes-list-map-keys:
- name
x-kubernetes-list-type: map
limits:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: 'Limits describes the maximum amount of compute resources
allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
type: object
requests:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: 'Requests describes the minimum amount of compute
resources required. If Requests is omitted for a container,
it defaults to Limits if that is explicitly specified, otherwise
to an implementation-defined value. Requests cannot exceed Limits.
More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
type: object
type: object
jobTtlSecondsAfterFinished:
default: 300
description: JobTTLSecondsAfterFinished is amount of time to keep
job pods after jobs are completed. Defaults to 300 seconds.
format: int32
minimum: 1
type: integer
log:
description: Log defines temporal cluster's logger configuration.
properties:
development:
default: false
description: Development determines whether the logger is run
in Development (== Test) or in Production mode. Default is
Production. Production-stage disables panics from DPanic logging.
type: boolean
format:
default: json
description: Format determines the format of each log file printed
to the output. Use "console" if you want stack traces to appear
on multiple lines.
enum:
- json
- console
type: string
level:
default: info
description: Level is the desired log level; see colocated zap_logger.go::parseZapLevel()
enum:
- debug
- info
- warn
- error
- dpanic
- panic
- fatal
type: string
outputFile:
description: OutputFile is the path to the log output file.
type: string
stdout:
default: true
description: Stdout is true if the output needs to goto standard
out; default is stderr.
type: boolean
type: object
mTLS:
description: MTLS allows configuration of the network traffic encryption
for the cluster.
Expand Down Expand Up @@ -3559,6 +3650,9 @@ spec:
setup:
description: Setup indicates if tables have been set up.
type: boolean
type:
description: Type indicates the datastore stype.
type: string
required:
- created
- setup
Expand All @@ -3576,12 +3670,15 @@ spec:
setup:
description: Setup indicates if tables have been set up.
type: boolean
type:
description: Type indicates the datastore stype.
type: string
required:
- created
- setup
type: object
secondaryVisibilityStore:
description: SecondaryVisibility holds the secondary visibility
description: SecondaryVisibilityStore holds the secondary visibility
datastore status.
properties:
created:
Expand All @@ -3594,6 +3691,9 @@ spec:
setup:
description: Setup indicates if tables have been set up.
type: boolean
type:
description: Type indicates the datastore stype.
type: string
required:
- created
- setup
Expand All @@ -3611,6 +3711,9 @@ spec:
setup:
description: Setup indicates if tables have been set up.
type: boolean
type:
description: Type indicates the datastore stype.
type: string
required:
- created
- setup
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ resources:
- manager.yaml
images:
- name: ghcr.io/alexandrevilain/temporal-operator
newTag: v0.15.1
newTag: v0.15.2
8 changes: 4 additions & 4 deletions docs/contributing/publish-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ Then run: `make prepare-release`
Once done create a new release branch and submit a Pull Request:

```
VERSION=$(cat VERSION)
git checkout -b release/v$VERSION
VERSION="v$(cat VERSION)"
git checkout -b release/$VERSION
git commit -am "Prepare release $VERSION"
git push origin/release/v$VERSION
gh pr create --title "Prepare release v$VERSION" --base main --head release/v$VERSION
git push origin release/$VERSION
gh pr create --title "Prepare release $VERSION" --base main --head release/$VERSION
```

Once the PR has been approved and merged, publish a new tag from the `main` branch
Expand Down

0 comments on commit 7370b81

Please sign in to comment.