From bd754a6420100d43b30668d9f2d405801a8a3927 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 24 Sep 2022 22:31:18 +0000 Subject: [PATCH 1/2] Update Knative Eventing metadata and add version 1.7.2 --- .../1.7.2.yml | 42 +++++++++++++++++++ .../metadata.yml | 16 +++++++ 2 files changed, 58 insertions(+) create mode 100644 repo/packages/knative-eventing.packages.kadras.io/1.7.2.yml create mode 100644 repo/packages/knative-eventing.packages.kadras.io/metadata.yml diff --git a/repo/packages/knative-eventing.packages.kadras.io/1.7.2.yml b/repo/packages/knative-eventing.packages.kadras.io/1.7.2.yml new file mode 100644 index 0000000..7c16a0d --- /dev/null +++ b/repo/packages/knative-eventing.packages.kadras.io/1.7.2.yml @@ -0,0 +1,42 @@ +apiVersion: data.packaging.carvel.dev/v1alpha1 +kind: Package +metadata: + creationTimestamp: null + name: knative-eventing.packages.kadras.io.1.7.2 +spec: + refName: knative-eventing.packages.kadras.io + releasedAt: "2022-09-24T22:30:10Z" + template: + spec: + deploy: + - kapp: {} + fetch: + - imgpkgBundle: + image: ghcr.io/arktonix/package-for-knative-eventing@sha256:f44a70521d587f13bf24292cd869579e2a50609b6c03f87c087f7c43fe2e33f0 + template: + - ytt: + paths: + - config + - kbld: + paths: + - '-' + - .imgpkg/images.yml + valuesSchema: + openAPIv3: + additionalProperties: false + properties: + default_broker: + additionalProperties: false + description: Configuration for the default in-memory broker + properties: + enabled: + default: false + description: Whether to install the default in-memory broker + type: boolean + namespace: + default: default + description: The namespace where to install the default broker + type: string + type: object + type: object + version: 1.7.2 diff --git a/repo/packages/knative-eventing.packages.kadras.io/metadata.yml b/repo/packages/knative-eventing.packages.kadras.io/metadata.yml new file mode 100644 index 0000000..77a31d5 --- /dev/null +++ b/repo/packages/knative-eventing.packages.kadras.io/metadata.yml @@ -0,0 +1,16 @@ +apiVersion: data.packaging.carvel.dev/v1alpha1 +kind: PackageMetadata +metadata: + creationTimestamp: null + name: knative-eventing.packages.kadras.io +spec: + categories: + - eventing + - cloudevents + displayName: knative-eventing + longDescription: Knative Eventing provides tools for routing events from event producers + to sinks, enabling developers to use an event-driven architecture with their applications. + maintainers: + - name: Thomas Vitale + providerName: Arktonix + shortDescription: Toolkit to build event-driven architectures on Kubernetes. From 557ee1a8c5a70d09757787ebaf5bdd303dc6e782 Mon Sep 17 00:00:00 2001 From: Thomas Vitale Date: Sun, 25 Sep 2022 00:34:47 +0200 Subject: [PATCH 2/2] Add Knative Eventing --- .github/workflows/release.yml | 2 +- README.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 896d5bb..fe730a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ env: COSIGN_EXPERIMENTAL: 1 REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} - VERSION: 0.1.0 + VERSION: 0.1.1 jobs: build: diff --git a/README.md b/README.md index ee41f10..5d74675 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ This repository contains the Carvel packages part of the Kadras project. The following packages are maintained by the [Arktonix](https://github.com/arktonix) organization: * [argo-cd](https://github.com/arktonix/package-for-argo-cd) +* [knative-eventing](https://github.com/arktonix/package-for-knative-eventing) It also includes the following open-source packages maintained by the [VMware Tanzu](https://github.com/vmware-tanzu) organization: @@ -37,7 +38,7 @@ You can install the Kadras package repository in a dedicated namespace using `kc ```shell kubectl create namespace carvel-packages kctrl package repository add -r kadras-repo \ - --url ghcr.io/arktonix/kadras-packages:0.1.0 \ + --url ghcr.io/arktonix/kadras-packages:0.1.1 \ -n carvel-packages ```