Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable/field-exporter] fix labels and more #544

Merged
merged 2 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -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
5 changes: 4 additions & 1 deletion stable/field-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]
Expand Down
8 changes: 7 additions & 1 deletion stable/field-exporter/README.md
Original file line number Diff line number Diff line change
@@ -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:** <https://github.com/deliveryhero/field-exporter>

## How to install this chart

Add Delivery Hero public chart repo:
Expand Down Expand Up @@ -36,6 +38,10 @@ To install with custom values file:
helm install my-release deliveryhero/field-exporter -f values.yaml
```

## Source Code

* <https://github.com/deliveryhero/field-exporter>

## Values

| Key | Type | Default | Description |
Expand Down
4 changes: 0 additions & 4 deletions stable/field-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
3 changes: 0 additions & 3 deletions stable/field-exporter/templates/leader-election-rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 0 additions & 3 deletions stable/field-exporter/templates/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Loading