Skip to content

Commit

Permalink
Merge pull request #225 from joelsmith/release2131
Browse files Browse the repository at this point in the history
prepare release 2.13.1
  • Loading branch information
joelsmith authored Jun 6, 2024
2 parents 762f6be + bbce381 commit 8e529c6
Show file tree
Hide file tree
Showing 25 changed files with 16,504 additions and 137 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
packages: write
id-token: write # needed for signing the images with GitHub OIDC Token **not production ready**

container: ghcr.io/kedacore/keda-tools:1.21.6
container: ghcr.io/kedacore/keda-tools:1.22.2
steps:
- name: Check out code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
packages: write
id-token: write # needed for signing the images with GitHub OIDC Token **not production ready**

container: ghcr.io/kedacore/keda-tools:1.21.6
container: ghcr.io/kedacore/keda-tools:1.22.2
steps:
- name: Check out code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM ghcr.io/kedacore/keda-tools:1.21.6 as builder
FROM ghcr.io/kedacore/keda-tools:1.22.2 as builder

ARG BUILD_VERSION=main
ARG GIT_COMMIT=HEAD
Expand Down
101 changes: 101 additions & 0 deletions bundle/manifests/eventing.keda.sh_cloudeventsources.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.13.0
creationTimestamp: null
labels:
app.kubernetes.io/part-of: keda-olm-operator
app.kubernetes.io/version: main
name: cloudeventsources.eventing.keda.sh
spec:
group: eventing.keda.sh
names:
kind: CloudEventSource
listKind: CloudEventSourceList
plural: cloudeventsources
singular: cloudeventsource
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .status.conditions[?(@.type=="Active")].status
name: Active
type: string
name: v1alpha1
schema:
openAPIV3Schema:
description: CloudEventSource defines how a KEDA event will be sent to event
sink
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: CloudEventSourceSpec defines the spec of CloudEventSource
properties:
clusterName:
type: string
destination:
description: Destination defines the various ways to emit events
properties:
http:
properties:
uri:
type: string
required:
- uri
type: object
type: object
required:
- destination
type: object
status:
description: CloudEventSourceStatus defines the observed state of CloudEventSource
properties:
conditions:
description: Conditions an array representation to store multiple
Conditions
items:
description: Condition to store the condition state
properties:
message:
description: A human readable message indicating details about
the transition.
type: string
reason:
description: The reason for the condition's last transition.
type: string
status:
description: Status of the condition, one of True, False, Unknown.
type: string
type:
description: Type of condition
type: string
required:
- status
- type
type: object
type: array
type: object
required:
- spec
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
13 changes: 8 additions & 5 deletions bundle/manifests/keda.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,20 +115,23 @@ metadata:
capabilities: Seamless Upgrades
categories: Cloud Provider
certified: "false"
containerImage: ghcr.io/kedacore/keda-olm-operator:2.12.1
createdAt: "2024-02-12T19:54:14Z"
containerImage: ghcr.io/kedacore/keda-olm-operator:2.13.1
createdAt: "2024-06-05T03:33:22Z"
description: Operator that provides KEDA, a Kubernetes-based event driver autoscaler
operatorframework.io/suggested-namespace: keda
operators.operatorframework.io/builder: operator-sdk-v1.31.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/kedacore/keda-olm-operator
support: KEDA Community
name: keda.v2.12.1
name: keda.v2.13.1
namespace: placeholder
spec:
apiservicedefinitions: {}
customresourcedefinitions:
owned:
- kind: CloudEventSource
name: cloudeventsources.eventing.keda.sh
version: v1alpha1
- description: Describes cluster wide authentication parameters
displayName: ClusterTriggerAuthentication
kind: ClusterTriggerAuthentication
Expand Down Expand Up @@ -673,6 +676,6 @@ spec:
minKubeVersion: 1.23.0
provider:
name: KEDA Community
replaces: keda.v2.12.0
replaces: keda.v2.12.1
selector: {}
version: 2.12.1
version: 2.13.1
Loading

0 comments on commit 8e529c6

Please sign in to comment.