From 72906c836165d2e801326797f7856bcfa201d173 Mon Sep 17 00:00:00 2001 From: bakito Date: Tue, 22 Nov 2022 19:18:03 +0100 Subject: [PATCH] add chart changes --- .gitignore | 2 +- Makefile | 5 +++++ helm/Chart.yaml | 4 ++++ helm/README.md | 3 +-- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5d5e957..2ded464 100644 --- a/.gitignore +++ b/.gitignore @@ -27,4 +27,4 @@ bin /helm/*-values.yaml dist gomock* -certs \ No newline at end of file +certs diff --git a/Makefile b/Makefile index dde035c..21e4490 100644 --- a/Makefile +++ b/Makefile @@ -95,6 +95,11 @@ controller-gen: $(CONTROLLER_GEN) ## Download controller-gen locally if necessar $(CONTROLLER_GEN): $(LOCALBIN) test -s $(LOCALBIN)/controller-gen || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_TOOLS_VERSION) +.PHONY: semver +semver: $(SEMVER) ## Download semver locally if necessary. +$(SEMVER): $(LOCALBIN) + test -s $(LOCALBIN)/semver || GOBIN=$(LOCALBIN) go install github.com/bakito/semver@$(SEMVER_VERSION) + .PHONY: helm-docs helm-docs: $(HELM_DOCS) ## Download helm-docs locally if necessary. $(HELM_DOCS): $(LOCALBIN) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 0dfe2a8..d725425 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -4,3 +4,7 @@ description: This operator creates a logging pod that logs corev1.Event informat type: application version: "1.10.2" appVersion: "v1.10.2" + +annotations: + artifacthub.io/changes: | + - Add extra pod labels diff --git a/helm/README.md b/helm/README.md index b3b398f..1464ab0 100644 --- a/helm/README.md +++ b/helm/README.md @@ -1,7 +1,6 @@ # k8s-event-logger-operator - -![Version: 1.10.2](https://img.shields.io/badge/Version-1.10.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.10.2](https://img.shields.io/badge/AppVersion-v1.10.2-informational?style=flat-square) +![Version: 1.10.2](https://img.shields.io/badge/Version-1.10.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.10.2](https://img.shields.io/badge/AppVersion-v1.10.2-informational?style=flat-square) This operator creates a logging pod that logs corev1.Event information as structured json log. The crd allows to configure the events to be logged.