From 587190ede2ba043d82b2d7c0db620d6c2b8c2634 Mon Sep 17 00:00:00 2001 From: Ariel Rossetto Ril Date: Wed, 11 Jun 2025 11:23:37 +0200 Subject: [PATCH 1/2] fixed helm chart name --- .github/workflows/helm-master.yaml | 2 +- charts/kaet-helm/Chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helm-master.yaml b/.github/workflows/helm-master.yaml index 946f93d..bc58e80 100644 --- a/.github/workflows/helm-master.yaml +++ b/.github/workflows/helm-master.yaml @@ -31,4 +31,4 @@ jobs: - name: Push Chart to GHCR run: | helm package charts/kaet-helm - helm push kaet-*.tgz oci://ghcr.io/ing-bank + helm push kaet-helm-*.tgz oci://ghcr.io/ing-bank diff --git a/charts/kaet-helm/Chart.yaml b/charts/kaet-helm/Chart.yaml index 8656d16..e1e8443 100644 --- a/charts/kaet-helm/Chart.yaml +++ b/charts/kaet-helm/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -name: kaet +name: kaet-helm description: KAET - Kubernetes Auto Exploit Tool type: application From 4bf486b055616675d8aaf7b7748c8d8711b9a2be Mon Sep 17 00:00:00 2001 From: Ariel Rossetto Ril Date: Wed, 11 Jun 2025 11:51:40 +0200 Subject: [PATCH 2/2] added changelog --- CHANGELOG.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a6f27ed --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,51 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +### Added + +- ... + +### Changed + +- ... + +### Deprecated + +- ... + +### Fixed + +- ... + +### Removed + +- ... + +### Security + +- ... + +## [0.1.0] - 2025-06-11 + +This is the first official release of KAET + +### Added + +- Source code for KAET +- Workflow to publish KAET's Helm Chart +- Workflow to publish KAET's Docker Image +- PR workflows: test, lint, security baseline +- Workflow to publish KAET's documentation at https://ing-bank.github.io/kaet/ + +### Fixed + +- Documentation typos for release + +[unreleased]: https://github.com/ing-bank/kaet/compare/v0.1.0...HEAD +[0.1.0]: https://github.com/ing-bank/kaet/releases/tag/v0.1.0 \ No newline at end of file