diff --git a/charts/ctrlplane/Chart.yaml b/charts/ctrlplane/Chart.yaml index a3aeca9..844cc01 100644 --- a/charts/ctrlplane/Chart.yaml +++ b/charts/ctrlplane/Chart.yaml @@ -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: diff --git a/charts/ctrlplane/charts/otel/templates/deployment.yaml b/charts/ctrlplane/charts/otel/templates/daemonset.yaml similarity index 91% rename from charts/ctrlplane/charts/otel/templates/deployment.yaml rename to charts/ctrlplane/charts/otel/templates/daemonset.yaml index faaf52f..918d0a9 100644 --- a/charts/ctrlplane/charts/otel/templates/deployment.yaml +++ b/charts/ctrlplane/charts/otel/templates/daemonset.yaml @@ -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 }} diff --git a/charts/ctrlplane/charts/otel/values.yaml b/charts/ctrlplane/charts/otel/values.yaml index e7234ec..7584592 100644 --- a/charts/ctrlplane/charts/otel/values.yaml +++ b/charts/ctrlplane/charts/otel/values.yaml @@ -50,7 +50,7 @@ common: labels: {} annotations: {} -deployment: +daemonset: labels: {} annotations: {}