diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 1859dbea..8b8ab0ce 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,4 @@ * @deliveryhero/helm-chart-admins -/stable @deliveryhero/helm-chart-maintainers -/stable/mlflow @deliveryhero/helm-chart-maintainers @deliveryhero/dh-logistics-ml-engineering +/stable @deliveryhero/helm-chart-maintainers +/stable/mlflow @deliveryhero/helm-chart-maintainers @deliveryhero/dh-logistics-ml-engineering +stable/field-exporter @deliveryhero/helm-chart-maintainers @deliveryhero/gcp diff --git a/stable/field-exporter/Chart.yaml b/stable/field-exporter/Chart.yaml index 8600164c..001d63fc 100644 --- a/stable/field-exporter/Chart.yaml +++ b/stable/field-exporter/Chart.yaml @@ -4,8 +4,11 @@ description: | A chart to install [field-exporter](https://github.com/deliveryhero/field-exporter). This controller is used to fill the gap in [k8s-config-connector](https://github.com/GoogleCloudPlatform/k8s-config-connector) for exporting value from Config Connector managed resources into Secrets and ConfigMaps. type: application -version: 1.0.2 +version: 1.0.3 appVersion: "v1.0.2" +home: https://github.com/deliveryhero/field-exporter +sources: + - https://github.com/deliveryhero/field-exporter maintainers: - name: vzholudev email: no-reply@deliveryhero.com diff --git a/stable/field-exporter/README.md b/stable/field-exporter/README.md index aa59ea7c..0b3e05b7 100644 --- a/stable/field-exporter/README.md +++ b/stable/field-exporter/README.md @@ -1,9 +1,11 @@ # field-exporter -![Version: 1.0.2](https://img.shields.io/badge/Version-1.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.2](https://img.shields.io/badge/AppVersion-v1.0.2-informational?style=flat-square) +![Version: 1.0.3](https://img.shields.io/badge/Version-1.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.2](https://img.shields.io/badge/AppVersion-v1.0.2-informational?style=flat-square) A chart to install [field-exporter](https://github.com/deliveryhero/field-exporter). This controller is used to fill the gap in [k8s-config-connector](https://github.com/GoogleCloudPlatform/k8s-config-connector) for exporting value from Config Connector managed resources into Secrets and ConfigMaps. +**Homepage:** + ## How to install this chart Add Delivery Hero public chart repo: @@ -36,6 +38,10 @@ To install with custom values file: helm install my-release deliveryhero/field-exporter -f values.yaml ``` +## Source Code + +* + ## Values | Key | Type | Default | Description | diff --git a/stable/field-exporter/templates/deployment.yaml b/stable/field-exporter/templates/deployment.yaml index dbe140f8..6695faf4 100644 --- a/stable/field-exporter/templates/deployment.yaml +++ b/stable/field-exporter/templates/deployment.yaml @@ -3,10 +3,6 @@ kind: Deployment metadata: name: {{ include "field-exporter.fullname" . }}-controller-manager labels: - app.kubernetes.io/component: manager - app.kubernetes.io/created-by: field-exporter - app.kubernetes.io/part-of: field-exporter - control-plane: controller-manager {{- include "field-exporter.labels" . | nindent 4 }} spec: replicas: {{ .Values.controllerManager.replicas }} diff --git a/stable/field-exporter/templates/leader-election-rbac.yaml b/stable/field-exporter/templates/leader-election-rbac.yaml index 39d8f5f6..d8a90a9d 100644 --- a/stable/field-exporter/templates/leader-election-rbac.yaml +++ b/stable/field-exporter/templates/leader-election-rbac.yaml @@ -3,9 +3,6 @@ kind: Role metadata: name: {{ include "field-exporter.fullname" . }}-leader-election-role labels: - app.kubernetes.io/component: rbac - app.kubernetes.io/created-by: field-exporter - app.kubernetes.io/part-of: field-exporter {{- include "field-exporter.labels" . | nindent 4 }} rules: - apiGroups: diff --git a/stable/field-exporter/templates/serviceaccount.yaml b/stable/field-exporter/templates/serviceaccount.yaml index e2024db7..8568c0e2 100644 --- a/stable/field-exporter/templates/serviceaccount.yaml +++ b/stable/field-exporter/templates/serviceaccount.yaml @@ -3,9 +3,6 @@ kind: ServiceAccount metadata: name: {{ include "field-exporter.fullname" . }}-controller-manager labels: - app.kubernetes.io/component: rbac - app.kubernetes.io/created-by: field-exporter - app.kubernetes.io/part-of: field-exporter {{- include "field-exporter.labels" . | nindent 4 }} annotations: {{- toYaml .Values.controllerManager.serviceAccount.annotations | nindent 4 }}