Skip to content
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
2 changes: 1 addition & 1 deletion charts/ctrlplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: ctrlplane
description: Ctrlplane Helm chart for Kubernetes
type: application
version: 0.7.1
version: 0.8.0
appVersion: "1.0.0"

maintainers:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
apiVersion: apps/v1
kind: Deployment
kind: DaemonSet
metadata:
name: {{ include "otel.fullname" . }}
labels:
{{- include "otel.labels" . | nindent 4 }}
{{- if .Values.deployment.labels -}}
{{- toYaml .Values.deployment.labels | nindent 4 }}
{{- if .Values.daemonset.labels -}}
{{- toYaml .Values.daemonset.labels | nindent 4 }}
{{- end }}
annotations:
{{- if .Values.deployment.annotations -}}
{{- toYaml .Values.deployment.annotations | nindent 4 }}
{{- if .Values.daemonset.annotations -}}
{{- toYaml .Values.daemonset.annotations | nindent 4 }}
{{- end }}
spec:
replicas: 1
selector:
matchLabels:
{{- include "ctrlplane.selectorLabels" $ | nindent 6 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/ctrlplane/charts/otel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ common:
labels: {}
annotations: {}

deployment:
daemonset:
labels: {}
annotations: {}

Expand Down