Skip to content

Commit 071020f

Browse files
github-actions[bot]kiali-bot
and
kiali-bot
authored
Prepare for next version (kiali#573)
* Release v1.57.0 * Prepare for next version Co-authored-by: kiali-bot <[email protected]>
1 parent 8232669 commit 071020f

File tree

11 files changed

+1131
-3
lines changed

11 files changed

+1131
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ OUTDIR=${ROOTDIR}/_output
99
TARGET_ARCHS ?= amd64 arm64 s390x ppc64le
1010

1111
# Identifies the current build.
12-
VERSION ?= v1.57.0-SNAPSHOT
12+
VERSION ?= v1.58.0-SNAPSHOT
1313
COMMIT_HASH ?= $(shell git rev-parse HEAD)
1414

1515
# Identifies the Kiali operator container image that will be built

manifests/kiali-community/1.57.0/manifests/kiali.v1.57.0.clusterserviceversion.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
support: Kiali
1313
description: "Kiali project provides answers to the questions: What microservices are part of my Istio service mesh and how are they connected?"
1414
repository: https://github.com/kiali/kiali
15-
createdAt: 2022-09-05T07:34:21Z
15+
createdAt: 2022-09-26T07:35:52Z
1616
alm-examples: |-
1717
[
1818
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM scratch
2+
3+
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
4+
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
5+
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
6+
LABEL operators.operatorframework.io.bundle.package.v1=kiali
7+
LABEL operators.operatorframework.io.bundle.channels.v1=alpha,stable
8+
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
9+
10+
COPY manifests /manifests/
11+
COPY metadata /metadata/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: kialis.kiali.io
5+
labels:
6+
app: kiali-operator
7+
spec:
8+
group: kiali.io
9+
names:
10+
kind: Kiali
11+
listKind: KialiList
12+
plural: kialis
13+
singular: kiali
14+
scope: Namespaced
15+
versions:
16+
- name: v1alpha1
17+
served: true
18+
storage: true
19+
subresources:
20+
status: {}
21+
schema:
22+
openAPIV3Schema:
23+
type: object
24+
x-kubernetes-preserve-unknown-fields: true

0 commit comments

Comments
 (0)