Skip to content

Commit bd9dfcd

Browse files
Merge pull request #376 from alexandrevilain/release/v0.13.1
Prepare release v0.13.1
2 parents ac91d8c + 7abb680 commit bd9dfcd

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.0
1+
0.13.1

bundle/manifests/temporal-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ metadata:
119119
capabilities: Seamless Upgrades
120120
categories: Application Runtime, Developer Tools, AI/Machine Learning
121121
containerImage: ghcr.io/alexandrevilain/temporal-operator
122-
createdAt: "2023-05-28T08:38:28Z"
122+
createdAt: "2023-06-08T08:17:32Z"
123123
operators.operatorframework.io/builder: operator-sdk-v1.26.1
124124
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
125-
name: temporal-operator.v0.13.0
125+
name: temporal-operator.v0.13.1
126126
namespace: placeholder
127127
spec:
128128
apiservicedefinitions: {}
@@ -471,7 +471,7 @@ spec:
471471
- --leader-elect
472472
command:
473473
- /manager
474-
image: ghcr.io/alexandrevilain/temporal-operator:v0.13.0
474+
image: ghcr.io/alexandrevilain/temporal-operator:v0.13.1
475475
livenessProbe:
476476
httpGet:
477477
path: /healthz
@@ -576,7 +576,7 @@ spec:
576576
name: Temporal Community
577577
url: https://temporal.io/
578578
replaces: temporal-operator.v0.9.1
579-
version: 0.13.0
579+
version: 0.13.1
580580
webhookdefinitions:
581581
- admissionReviewVersions:
582582
- v1

bundle/manifests/temporal.io_temporalclusters.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,13 @@ spec:
776776
type: array
777777
scheme:
778778
description: HTTP scheme to use for scraping.
779+
`http` and `https` are the expected values
780+
unless you rewrite the `__scheme__` label
781+
via relabeling. If empty, Prometheus uses
782+
the default value `http`.
783+
enum:
784+
- http
785+
- https
779786
type: string
780787
scrapeTimeout:
781788
description: Timeout after which the scrape
@@ -2444,10 +2451,10 @@ spec:
24442451
description: TLS configuration.
24452452
items:
24462453
description: IngressTLS describes the transport layer security
2447-
associated with an Ingress.
2454+
associated with an ingress.
24482455
properties:
24492456
hosts:
2450-
description: Hosts are a list of hosts included in the
2457+
description: hosts is a list of hosts included in the
24512458
TLS certificate. The values in this list must match
24522459
the name/s used in the tlsSecret. Defaults to the
24532460
wildcard host setting for the loadbalancer controller
@@ -2457,13 +2464,13 @@ spec:
24572464
type: array
24582465
x-kubernetes-list-type: atomic
24592466
secretName:
2460-
description: SecretName is the name of the secret used
2467+
description: secretName is the name of the secret used
24612468
to terminate TLS traffic on port 443. Field is left
24622469
optional to allow TLS routing based on SNI hostname
24632470
alone. If the SNI host in a listener conflicts with
24642471
the "Host" header field used by an IngressRule, the
24652472
SNI host is used for termination and value of the
2466-
Host header is used for routing.
2473+
"Host" header is used for routing.
24672474
type: string
24682475
type: object
24692476
type: array

config/crd/bases/temporal.io_temporalclusters.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,10 @@ spec:
561561
type: object
562562
type: array
563563
scheme:
564-
description: HTTP scheme to use for scraping.
564+
description: HTTP scheme to use for scraping. `http` and `https` are the expected values unless you rewrite the `__scheme__` label via relabeling. If empty, Prometheus uses the default value `http`.
565+
enum:
566+
- http
567+
- https
565568
type: string
566569
scrapeTimeout:
567570
description: Timeout after which the scrape is ended If not specified, the Prometheus global scrape timeout is used unless it is less than `Interval` in which the latter is used.
@@ -1848,16 +1851,16 @@ spec:
18481851
tls:
18491852
description: TLS configuration.
18501853
items:
1851-
description: IngressTLS describes the transport layer security associated with an Ingress.
1854+
description: IngressTLS describes the transport layer security associated with an ingress.
18521855
properties:
18531856
hosts:
1854-
description: Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.
1857+
description: hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.
18551858
items:
18561859
type: string
18571860
type: array
18581861
x-kubernetes-list-type: atomic
18591862
secretName:
1860-
description: SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.
1863+
description: secretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the "Host" header is used for routing.
18611864
type: string
18621865
type: object
18631866
type: array

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ resources:
44
- manager.yaml
55
images:
66
- name: ghcr.io/alexandrevilain/temporal-operator
7-
newTag: v0.13.0
7+
newTag: v0.13.1

0 commit comments

Comments
 (0)