Skip to content

Commit

Permalink
feat(events): ability to define image pull secrets for the events cha…
Browse files Browse the repository at this point in the history
…rt (#43)

* feat(events): ability to define image pull secrets for the events deployment

* chore(deps): dependency bumps of our own charts
  • Loading branch information
obs-gh-colinhutchinson authored Sep 18, 2023
1 parent 681fb04 commit 982250a
Show file tree
Hide file tree
Showing 21 changed files with 58 additions and 51 deletions.
2 changes: 1 addition & 1 deletion charts/endpoint/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: endpoint
description: Observe collection endpoint utility functions
type: library
version: 0.1.3
version: 0.1.4
maintainers:
- name: Observe
email: [email protected]
2 changes: 1 addition & 1 deletion charts/endpoint/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# endpoint

![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square)
![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square)

Observe collection endpoint utility functions

Expand Down
6 changes: 3 additions & 3 deletions charts/events/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: endpoint
repository: file://../endpoint
version: 0.1.3
digest: sha256:9953e693e6627c73836353ca5b415595dcd72d64cc87afdf31a25db17f0f2194
generated: "2023-07-11T11:35:41.2535-07:00"
version: 0.1.4
digest: sha256:657e56ee4df48f0ef42ba3bdc3261e18c714c2084d4defd1a0985b9601c03c1a
generated: "2023-09-15T09:43:59.665623489-04:00"
4 changes: 2 additions & 2 deletions charts/events/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ apiVersion: v2
name: events
description: Observe kubernetes event collection
type: application
version: 0.1.8
version: 0.1.9
appVersion: v0.9.1
dependencies:
- name: endpoint
version: 0.1.3
version: 0.1.4
repository: file://../endpoint
maintainers:
- name: Observe
Expand Down
5 changes: 3 additions & 2 deletions charts/events/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# events

![Version: 0.1.8](https://img.shields.io/badge/Version-0.1.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.9.1](https://img.shields.io/badge/AppVersion-v0.9.1-informational?style=flat-square)
![Version: 0.1.9](https://img.shields.io/badge/Version-0.1.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.9.1](https://img.shields.io/badge/AppVersion-v0.9.1-informational?style=flat-square)

Observe kubernetes event collection

Expand All @@ -14,7 +14,7 @@ Observe kubernetes event collection

| Repository | Name | Version |
|------------|------|---------|
| file://../endpoint | endpoint | 0.1.3 |
| file://../endpoint | endpoint | 0.1.4 |

## Values

Expand All @@ -26,6 +26,7 @@ Observe kubernetes event collection
| image.kube_state_events.repository | string | `"observeinc/kube-state-events"` | |
| image.kube_state_events.tag | string | `""` | |
| image.pullPolicy | string | `"Always"` | |
| imagePullSecrets | list | `[]` | |
| rbac.create | bool | `true` | |
| resources.limits.cpu | string | `"50m"` | |
| resources.limits.memory | string | `"256Mi"` | |
Expand Down
4 changes: 4 additions & 0 deletions charts/events/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ spec:
labels:
{{- include "kube-events.selectorLabels" . | nindent 8 }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
securityContext:
runAsNonRoot: true
runAsUser: 65534
Expand Down
2 changes: 2 additions & 0 deletions charts/events/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ image:
tag: ""
pullPolicy: Always

imagePullSecrets: []

rbac:
create: true

Expand Down
6 changes: 3 additions & 3 deletions charts/logs/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies:
version: 0.25.0
- name: endpoint
repository: file://../endpoint
version: 0.1.3
digest: sha256:53c32af7f65d7683aed0aa325738388ab0be6379c25b6a0d90724e520050f54b
generated: "2023-07-20T15:01:44.474585-07:00"
version: 0.1.4
digest: sha256:691b500f5efd629e157d876bdb9efedcdda6820429e43cdedb4be0481215ea0c
generated: "2023-09-15T09:43:59.967721734-04:00"
4 changes: 2 additions & 2 deletions charts/logs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ apiVersion: v2
name: logs
description: Observe logs collection
type: application
version: 0.1.6
version: 0.1.7
dependencies:
- name: fluent-bit
version: 0.25.0
repository: https://fluent.github.io/helm-charts
- name: endpoint
version: 0.1.3
version: 0.1.4
repository: file://../endpoint
maintainers:
- name: Observe
Expand Down
4 changes: 2 additions & 2 deletions charts/logs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# logs

![Version: 0.1.6](https://img.shields.io/badge/Version-0.1.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.1.7](https://img.shields.io/badge/Version-0.1.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Observe logs collection

Expand All @@ -14,7 +14,7 @@ Observe logs collection

| Repository | Name | Version |
|------------|------|---------|
| file://../endpoint | endpoint | 0.1.3 |
| file://../endpoint | endpoint | 0.1.4 |
| https://fluent.github.io/helm-charts | fluent-bit | 0.25.0 |

## Values
Expand Down
6 changes: 3 additions & 3 deletions charts/metrics/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies:
version: 0.10.0
- name: endpoint
repository: file://../endpoint
version: 0.1.3
digest: sha256:e835dfde169a0bc3a9982b32b43da0e44902f1229bc3e5319abd5c4ef5343327
generated: "2023-07-11T11:35:27.773065-07:00"
version: 0.1.4
digest: sha256:61bb219dd48ee08f155ad588b85a510e07145ad4c9a5cbb4ba05fa29137b39dc
generated: "2023-09-15T09:44:01.849865849-04:00"
4 changes: 2 additions & 2 deletions charts/metrics/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ apiVersion: v2
name: metrics
description: Observe metrics collection
type: application
version: 0.3.0
version: 0.3.1
dependencies:
- name: grafana-agent
version: 0.10.0
repository: https://grafana.github.io/helm-charts
- name: endpoint
version: 0.1.3
version: 0.1.4
repository: file://../endpoint
maintainers:
- name: Observe
Expand Down
4 changes: 2 additions & 2 deletions charts/metrics/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# metrics

![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Observe metrics collection

Expand All @@ -14,7 +14,7 @@ Observe metrics collection

| Repository | Name | Version |
|------------|------|---------|
| file://../endpoint | endpoint | 0.1.3 |
| file://../endpoint | endpoint | 0.1.4 |
| https://grafana.github.io/helm-charts | grafana-agent | 0.10.0 |

## Values
Expand Down
2 changes: 1 addition & 1 deletion charts/proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: proxy
description: "Observe agent proxy (for testing only, do not use)"
type: application
version: 0.1.0
version: 0.1.1
maintainers:
- name: Observe
email: [email protected]
2 changes: 1 addition & 1 deletion charts/proxy/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# proxy

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Observe agent proxy (for testing only, do not use)

Expand Down
12 changes: 6 additions & 6 deletions charts/stack/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
dependencies:
- name: logs
repository: file://../logs
version: 0.1.6
version: 0.1.7
- name: metrics
repository: file://../metrics
version: 0.3.0
version: 0.3.1
- name: events
repository: file://../events
version: 0.1.8
version: 0.1.9
- name: proxy
repository: file://../proxy
version: 0.1.0
digest: sha256:1a14c5fdc34d09a14ed44ad53f62cdc8adb67c595290b2d1278daf764e19da37
generated: "2023-09-11T17:27:26.406590114-04:00"
version: 0.1.1
digest: sha256:9d478a4b0c7c3c8f64c8de1f77152458eee86940634bfff4995d395f0ace087d
generated: "2023-09-15T09:45:35.992280767-04:00"
10 changes: 5 additions & 5 deletions charts/stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ apiVersion: v2
name: stack
description: Observe Kubernetes agent stack
type: application
version: 0.3.0
version: 0.3.1
dependencies:
- name: logs
version: 0.1.6
version: 0.1.7
repository: file://../logs
condition: logs.enabled
- name: metrics
version: 0.3.0
version: 0.3.1
repository: file://../metrics
condition: metrics.enabled
- name: events
version: 0.1.8
version: 0.1.9
repository: file://../events
condition: events.enabled
- name: proxy
version: 0.1.0
version: 0.1.1
repository: file://../proxy
condition: proxy.enabled
maintainers:
Expand Down
10 changes: 5 additions & 5 deletions charts/stack/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# stack

![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Observe Kubernetes agent stack

Expand All @@ -14,10 +14,10 @@ Observe Kubernetes agent stack

| Repository | Name | Version |
|------------|------|---------|
| file://../events | events | 0.1.8 |
| file://../logs | logs | 0.1.6 |
| file://../metrics | metrics | 0.3.0 |
| file://../proxy | proxy | 0.1.0 |
| file://../events | events | 0.1.9 |
| file://../logs | logs | 0.1.7 |
| file://../metrics | metrics | 0.3.1 |
| file://../proxy | proxy | 0.1.1 |

## Values

Expand Down
8 changes: 4 additions & 4 deletions charts/traces/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ dependencies:
version: 0.61.2
- name: endpoint
repository: file://../endpoint
version: 0.1.3
version: 0.1.4
- name: proxy
repository: file://../proxy
version: 0.1.0
digest: sha256:26ab5bb558ca994ba2e7e3adb89977a0727b3cb0b529dd8f85efa12897284be7
generated: "2023-07-18T12:11:07.769652-07:00"
version: 0.1.1
digest: sha256:f611eed24c070d5818d2ffe125dc7570407477f7506879e4f9d7c9364e22c4f5
generated: "2023-09-15T09:45:36.333691496-04:00"
6 changes: 3 additions & 3 deletions charts/traces/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ apiVersion: v2
name: traces
description: Observe OpenTelemetry trace collection
type: application
version: 0.1.11
version: 0.1.12
dependencies:
- name: opentelemetry-collector
version: 0.61.2
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
- name: endpoint
version: 0.1.3
version: 0.1.4
repository: file://../endpoint
- name: proxy
version: 0.1.0
version: 0.1.1
repository: file://../proxy
condition: proxy.enabled
maintainers:
Expand Down
6 changes: 3 additions & 3 deletions charts/traces/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# traces

![Version: 0.1.11](https://img.shields.io/badge/Version-0.1.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.1.12](https://img.shields.io/badge/Version-0.1.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Observe OpenTelemetry trace collection

Expand All @@ -14,8 +14,8 @@ Observe OpenTelemetry trace collection

| Repository | Name | Version |
|------------|------|---------|
| file://../endpoint | endpoint | 0.1.3 |
| file://../proxy | proxy | 0.1.0 |
| file://../endpoint | endpoint | 0.1.4 |
| file://../proxy | proxy | 0.1.1 |
| https://open-telemetry.github.io/opentelemetry-helm-charts | opentelemetry-collector | 0.61.2 |

## Values
Expand Down

0 comments on commit 982250a

Please sign in to comment.