From 54837e5b7d0c7982e494774bb2beeb34563a51cf Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 30 Sep 2022 21:12:25 +0000 Subject: [PATCH 1/2] Update Spring Boot Conventions metadata and add version 0.1.0 --- .../0.1.0.yml | 64 +++++++++++++++++++ .../metadata.yml | 17 +++++ 2 files changed, 81 insertions(+) create mode 100644 repo/packages/spring-boot-conventions.packages.kadras.io/0.1.0.yml create mode 100644 repo/packages/spring-boot-conventions.packages.kadras.io/metadata.yml diff --git a/repo/packages/spring-boot-conventions.packages.kadras.io/0.1.0.yml b/repo/packages/spring-boot-conventions.packages.kadras.io/0.1.0.yml new file mode 100644 index 0000000..064d1dc --- /dev/null +++ b/repo/packages/spring-boot-conventions.packages.kadras.io/0.1.0.yml @@ -0,0 +1,64 @@ +apiVersion: data.packaging.carvel.dev/v1alpha1 +kind: Package +metadata: + creationTimestamp: null + name: spring-boot-conventions.packages.kadras.io.0.1.0 +spec: + refName: spring-boot-conventions.packages.kadras.io + releasedAt: "2022-09-30T21:11:16Z" + template: + spec: + deploy: + - kapp: {} + fetch: + - imgpkgBundle: + image: ghcr.io/arktonix/package-for-spring-boot-conventions@sha256:9f2a483556d8c9a9d894bbbd13ad2948f5901d32cad87bd7f5a2e456cd391d3c + template: + - ytt: + paths: + - config + - kbld: + paths: + - '-' + - .imgpkg/images.yml + valuesSchema: + openAPIv3: + additionalProperties: false + properties: + namespace: + default: spring-boot-conventions + description: The namespace where to install the Spring Boot Conventions + type: string + resources: + additionalProperties: false + description: Resource configuration for the Convention Server + properties: + limits: + additionalProperties: false + description: Resource limits + properties: + cpu: + default: 100m + description: CPU limits + type: string + memory: + default: 256Mi + description: Memory limits + type: string + type: object + requests: + additionalProperties: false + description: Resource requests + properties: + cpu: + default: 100m + description: CPU requests + type: string + memory: + default: 20Mi + description: Memory requests + type: string + type: object + type: object + type: object + version: 0.1.0 diff --git a/repo/packages/spring-boot-conventions.packages.kadras.io/metadata.yml b/repo/packages/spring-boot-conventions.packages.kadras.io/metadata.yml new file mode 100644 index 0000000..6d6fd27 --- /dev/null +++ b/repo/packages/spring-boot-conventions.packages.kadras.io/metadata.yml @@ -0,0 +1,17 @@ +apiVersion: data.packaging.carvel.dev/v1alpha1 +kind: PackageMetadata +metadata: + creationTimestamp: null + name: spring-boot-conventions.packages.kadras.io +spec: + categories: + - ci/cd + - configuration + displayName: spring-boot-conventions + longDescription: The Spring Boot Convention Server works with the Cartographer Convention + Controller to apply best-practices to workloads at runtime by understanding the + developer's intent. + maintainers: + - name: Thomas Vitale + providerName: Arktonix + shortDescription: Spring Boot Convention Server for Cartographer. From f2f7e902d4c0017b775d74839cfc1520772a162e Mon Sep 17 00:00:00 2001 From: Thomas Vitale Date: Fri, 30 Sep 2022 23:14:11 +0200 Subject: [PATCH 2/2] Add Spring Boot Conventions --- .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 f48c95a..5ffd089 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.6 + VERSION: 0.1.7 jobs: build: diff --git a/README.md b/README.md index df8a162..3610bff 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ The following packages are maintained by the [Arktonix](https://github.com/arkto * [knative-eventing](https://github.com/arktonix/package-for-knative-eventing) * [knative-serving](https://github.com/arktonix/package-for-knative-serving) * [kpack-dependencies](https://github.com/arktonix/kpack-dependencies) +* [spring-boot-conventions](https://github.com/arktonix/package-for-spring-boot-conventions) * [tekton-pipelines](https://github.com/arktonix/package-for-tekton-pipelines) It also includes the following open-source packages maintained by the [VMware Tanzu](https://github.com/vmware-tanzu) organization: @@ -43,7 +44,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.6 \ + --url ghcr.io/arktonix/kadras-packages:0.1.7 \ -n carvel-packages ```