diff --git a/operations/helm/charts/alloy/CHANGELOG.md b/operations/helm/charts/alloy/CHANGELOG.md index d342294e36..2c4d2c39cf 100644 --- a/operations/helm/charts/alloy/CHANGELOG.md +++ b/operations/helm/charts/alloy/CHANGELOG.md @@ -7,6 +7,13 @@ This document contains a historical list of changes between releases. Only changes that impact end-user behavior are listed; changes to documentation or internal API changes are not present. +Unreleased +---------- + +### Bug Fixes + +- Set resource namespace correctly (@shinebayar-g) + 0.12.0 (2025-02-24) ---------- @@ -92,7 +99,6 @@ internal API changes are not present. - Update helm chart to use v1.3.1. - 0.6.0 (2024-08-05) ------------------ @@ -144,7 +150,6 @@ internal API changes are not present. - Update to Grafana Alloy v1.1.0. (@rfratto) - 0.2.0 (2024-05-08) ------------------ diff --git a/operations/helm/charts/alloy/README.md b/operations/helm/charts/alloy/README.md index 37c8cc1f12..3b2066bf7d 100644 --- a/operations/helm/charts/alloy/README.md +++ b/operations/helm/charts/alloy/README.md @@ -124,6 +124,7 @@ useful if just using the default DaemonSet isn't sufficient. | ingress.pathType | string | `"Prefix"` | | | ingress.tls | list | `[]` | | | nameOverride | string | `nil` | Overrides the chart's name. Used to change the infix in the resource names. | +| namespaceOverride | string | `nil` | Overrides the chart's namespace. | | rbac.create | bool | `true` | Whether to create RBAC resources for Alloy. | | service.annotations | object | `{}` | | | service.clusterIP | string | `""` | Cluster IP, can be set to None, empty "" or an IP address | diff --git a/operations/helm/charts/alloy/templates/cluster_service.yaml b/operations/helm/charts/alloy/templates/cluster_service.yaml index e0453b88fd..090ad523cb 100644 --- a/operations/helm/charts/alloy/templates/cluster_service.yaml +++ b/operations/helm/charts/alloy/templates/cluster_service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: {{ include "alloy.fullname" . }}-cluster + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: networking diff --git a/operations/helm/charts/alloy/templates/configmap.yaml b/operations/helm/charts/alloy/templates/configmap.yaml index 47c775a99b..59308e61eb 100644 --- a/operations/helm/charts/alloy/templates/configmap.yaml +++ b/operations/helm/charts/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: {{ include "alloy.fullname" . }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: config diff --git a/operations/helm/charts/alloy/templates/controllers/daemonset.yaml b/operations/helm/charts/alloy/templates/controllers/daemonset.yaml index 2f80948c21..b6929955f4 100644 --- a/operations/helm/charts/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/charts/alloy/templates/controllers/daemonset.yaml @@ -3,6 +3,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: {{ include "alloy.fullname" . }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} {{- with .Values.controller.extraAnnotations }} diff --git a/operations/helm/charts/alloy/templates/controllers/deployment.yaml b/operations/helm/charts/alloy/templates/controllers/deployment.yaml index 8e748cac59..07d6912dc6 100644 --- a/operations/helm/charts/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/charts/alloy/templates/controllers/deployment.yaml @@ -3,6 +3,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "alloy.fullname" . }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} {{- with .Values.controller.extraAnnotations }} diff --git a/operations/helm/charts/alloy/templates/controllers/statefulset.yaml b/operations/helm/charts/alloy/templates/controllers/statefulset.yaml index 2c4b1b6f01..a290834a97 100644 --- a/operations/helm/charts/alloy/templates/controllers/statefulset.yaml +++ b/operations/helm/charts/alloy/templates/controllers/statefulset.yaml @@ -6,6 +6,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: name: {{ include "alloy.fullname" . }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} {{- with .Values.controller.extraAnnotations }} diff --git a/operations/helm/charts/alloy/templates/hpa.yaml b/operations/helm/charts/alloy/templates/hpa.yaml index e0b175dfe7..57bcc096e6 100644 --- a/operations/helm/charts/alloy/templates/hpa.yaml +++ b/operations/helm/charts/alloy/templates/hpa.yaml @@ -16,6 +16,7 @@ apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler metadata: name: {{ include "alloy.fullname" . }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: availability diff --git a/operations/helm/charts/alloy/templates/pdb.yaml b/operations/helm/charts/alloy/templates/pdb.yaml index 4462456bf8..87b9db48cd 100644 --- a/operations/helm/charts/alloy/templates/pdb.yaml +++ b/operations/helm/charts/alloy/templates/pdb.yaml @@ -15,7 +15,7 @@ apiVersion: {{ include "alloy.controller.pdb.apiVersion" . }} kind: PodDisruptionBudget metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} spec: @@ -28,4 +28,4 @@ spec: {{- if .Values.controller.podDisruptionBudget.maxUnavailable }} maxUnavailable: {{ .Values.controller.podDisruptionBudget.maxUnavailable }} {{- end }} -{{- end }} \ No newline at end of file +{{- end }} diff --git a/operations/helm/charts/alloy/templates/rbac.yaml b/operations/helm/charts/alloy/templates/rbac.yaml index 00e77668f8..c8d426f090 100644 --- a/operations/helm/charts/alloy/templates/rbac.yaml +++ b/operations/helm/charts/alloy/templates/rbac.yaml @@ -107,5 +107,5 @@ roleRef: subjects: - kind: ServiceAccount name: {{ include "alloy.serviceAccountName" . }} - namespace: {{ .Release.Namespace }} + namespace: {{ include "alloy.namespace" . }} {{- end }} diff --git a/operations/helm/charts/alloy/templates/service.yaml b/operations/helm/charts/alloy/templates/service.yaml index 8afdf57745..53f79b3c6b 100644 --- a/operations/helm/charts/alloy/templates/service.yaml +++ b/operations/helm/charts/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: {{ include "alloy.fullname" . }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: networking diff --git a/operations/helm/charts/alloy/templates/serviceaccount.yaml b/operations/helm/charts/alloy/templates/serviceaccount.yaml index faf9a5da97..d2b1600da3 100644 --- a/operations/helm/charts/alloy/templates/serviceaccount.yaml +++ b/operations/helm/charts/alloy/templates/serviceaccount.yaml @@ -3,7 +3,7 @@ apiVersion: v1 kind: ServiceAccount metadata: name: {{ include "alloy.serviceAccountName" . }} - namespace: {{ .Release.Namespace }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: rbac diff --git a/operations/helm/charts/alloy/templates/servicemonitor.yaml b/operations/helm/charts/alloy/templates/servicemonitor.yaml index 3249116fa2..382b38a233 100644 --- a/operations/helm/charts/alloy/templates/servicemonitor.yaml +++ b/operations/helm/charts/alloy/templates/servicemonitor.yaml @@ -4,6 +4,7 @@ apiVersion: monitoring.coreos.com/v1 kind: ServiceMonitor metadata: name: {{ include "alloy.fullname" . }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: metrics diff --git a/operations/helm/charts/alloy/values.yaml b/operations/helm/charts/alloy/values.yaml index 9ae5dc3fe5..19284a12a0 100644 --- a/operations/helm/charts/alloy/values.yaml +++ b/operations/helm/charts/alloy/values.yaml @@ -1,6 +1,9 @@ # -- Overrides the chart's name. Used to change the infix in the resource names. nameOverride: null +# -- Overrides the chart's namespace. +namespaceOverride: null + # -- Overrides the chart's computed fullname. Used to change the full prefix of # resource names. fullnameOverride: null diff --git a/operations/helm/tests/additional-serviceaccount-label/alloy/templates/configmap.yaml b/operations/helm/tests/additional-serviceaccount-label/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/additional-serviceaccount-label/alloy/templates/configmap.yaml +++ b/operations/helm/tests/additional-serviceaccount-label/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/additional-serviceaccount-label/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/additional-serviceaccount-label/alloy/templates/controllers/daemonset.yaml index 275d8bdff4..3849464675 100644 --- a/operations/helm/tests/additional-serviceaccount-label/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/additional-serviceaccount-label/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/additional-serviceaccount-label/alloy/templates/service.yaml b/operations/helm/tests/additional-serviceaccount-label/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/additional-serviceaccount-label/alloy/templates/service.yaml +++ b/operations/helm/tests/additional-serviceaccount-label/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/clustering/alloy/templates/cluster_service.yaml b/operations/helm/tests/clustering/alloy/templates/cluster_service.yaml index b316797581..47da96b147 100644 --- a/operations/helm/tests/clustering/alloy/templates/cluster_service.yaml +++ b/operations/helm/tests/clustering/alloy/templates/cluster_service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy-cluster + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/clustering/alloy/templates/configmap.yaml b/operations/helm/tests/clustering/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/clustering/alloy/templates/configmap.yaml +++ b/operations/helm/tests/clustering/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/clustering/alloy/templates/controllers/statefulset.yaml b/operations/helm/tests/clustering/alloy/templates/controllers/statefulset.yaml index 19584e55f8..cec16a9ad3 100644 --- a/operations/helm/tests/clustering/alloy/templates/controllers/statefulset.yaml +++ b/operations/helm/tests/clustering/alloy/templates/controllers/statefulset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/clustering/alloy/templates/service.yaml b/operations/helm/tests/clustering/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/clustering/alloy/templates/service.yaml +++ b/operations/helm/tests/clustering/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/configmap.yaml b/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/configmap.yaml +++ b/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/controllers/deployment.yaml b/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/controllers/deployment.yaml index 8750b1a0af..d8b9ac0c78 100644 --- a/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/controllers/deployment.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/service.yaml b/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/service.yaml +++ b/operations/helm/tests/controller-deployment-pdb-max-unavailable/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/configmap.yaml b/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/configmap.yaml +++ b/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/controllers/deployment.yaml b/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/controllers/deployment.yaml index 8750b1a0af..d8b9ac0c78 100644 --- a/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/controllers/deployment.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/service.yaml b/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/service.yaml +++ b/operations/helm/tests/controller-deployment-pdb-min-available/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/configmap.yaml b/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/configmap.yaml +++ b/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/controllers/statefulset.yaml b/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/controllers/statefulset.yaml index 1e6198dd06..56b68ad710 100644 --- a/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/controllers/statefulset.yaml +++ b/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/controllers/statefulset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/service.yaml b/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/service.yaml +++ b/operations/helm/tests/controller-statefulset-pdb-max-unavailable/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/configmap.yaml b/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/configmap.yaml +++ b/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/controllers/statefulset.yaml b/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/controllers/statefulset.yaml index 1e6198dd06..56b68ad710 100644 --- a/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/controllers/statefulset.yaml +++ b/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/controllers/statefulset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/service.yaml b/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/service.yaml +++ b/operations/helm/tests/controller-statefulset-pdb-min-available/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-volumes-extra/alloy/templates/configmap.yaml b/operations/helm/tests/controller-volumes-extra/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/controller-volumes-extra/alloy/templates/configmap.yaml +++ b/operations/helm/tests/controller-volumes-extra/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-volumes-extra/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/controller-volumes-extra/alloy/templates/controllers/daemonset.yaml index 052c02ec64..725546793a 100644 --- a/operations/helm/tests/controller-volumes-extra/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/controller-volumes-extra/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/controller-volumes-extra/alloy/templates/service.yaml b/operations/helm/tests/controller-volumes-extra/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/controller-volumes-extra/alloy/templates/service.yaml +++ b/operations/helm/tests/controller-volumes-extra/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/configmap.yaml b/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/configmap.yaml +++ b/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/controllers/daemonset.yaml index 0775eba5ec..e68b2a78e9 100644 --- a/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/service.yaml b/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/service.yaml +++ b/operations/helm/tests/create-daemonset-hostnetwork/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-daemonset/alloy/templates/configmap.yaml b/operations/helm/tests/create-daemonset/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/create-daemonset/alloy/templates/configmap.yaml +++ b/operations/helm/tests/create-daemonset/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-daemonset/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/create-daemonset/alloy/templates/controllers/daemonset.yaml index 275d8bdff4..3849464675 100644 --- a/operations/helm/tests/create-daemonset/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/create-daemonset/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-daemonset/alloy/templates/service.yaml b/operations/helm/tests/create-daemonset/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/create-daemonset/alloy/templates/service.yaml +++ b/operations/helm/tests/create-daemonset/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/configmap.yaml b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/configmap.yaml +++ b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/controllers/deployment.yaml b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/controllers/deployment.yaml index 6a84ff0ead..1713c0db47 100644 --- a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/controllers/deployment.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/hpa.yaml b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/hpa.yaml index df0e8ad824..55149cbe60 100644 --- a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/hpa.yaml +++ b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/hpa.yaml @@ -4,6 +4,7 @@ apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/service.yaml b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/create-deployment-autoscaling/alloy/templates/service.yaml +++ b/operations/helm/tests/create-deployment-autoscaling/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-deployment/alloy/templates/configmap.yaml b/operations/helm/tests/create-deployment/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/create-deployment/alloy/templates/configmap.yaml +++ b/operations/helm/tests/create-deployment/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-deployment/alloy/templates/controllers/deployment.yaml b/operations/helm/tests/create-deployment/alloy/templates/controllers/deployment.yaml index 8750b1a0af..d8b9ac0c78 100644 --- a/operations/helm/tests/create-deployment/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/tests/create-deployment/alloy/templates/controllers/deployment.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-deployment/alloy/templates/service.yaml b/operations/helm/tests/create-deployment/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/create-deployment/alloy/templates/service.yaml +++ b/operations/helm/tests/create-deployment/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/configmap.yaml b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/configmap.yaml +++ b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/controllers/statefulset.yaml b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/controllers/statefulset.yaml index 1669532947..a1dd467096 100644 --- a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/controllers/statefulset.yaml +++ b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/controllers/statefulset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/hpa.yaml b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/hpa.yaml index 3cb8e6d366..76314957fa 100644 --- a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/hpa.yaml +++ b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/hpa.yaml @@ -4,6 +4,7 @@ apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/service.yaml b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/service.yaml +++ b/operations/helm/tests/create-statefulset-autoscaling/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-statefulset/alloy/templates/configmap.yaml b/operations/helm/tests/create-statefulset/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/create-statefulset/alloy/templates/configmap.yaml +++ b/operations/helm/tests/create-statefulset/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-statefulset/alloy/templates/controllers/statefulset.yaml b/operations/helm/tests/create-statefulset/alloy/templates/controllers/statefulset.yaml index 1e6198dd06..56b68ad710 100644 --- a/operations/helm/tests/create-statefulset/alloy/templates/controllers/statefulset.yaml +++ b/operations/helm/tests/create-statefulset/alloy/templates/controllers/statefulset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/create-statefulset/alloy/templates/service.yaml b/operations/helm/tests/create-statefulset/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/create-statefulset/alloy/templates/service.yaml +++ b/operations/helm/tests/create-statefulset/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/custom-config/alloy/templates/configmap.yaml b/operations/helm/tests/custom-config/alloy/templates/configmap.yaml index cb45403406..6777d49ae8 100644 --- a/operations/helm/tests/custom-config/alloy/templates/configmap.yaml +++ b/operations/helm/tests/custom-config/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/custom-config/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/custom-config/alloy/templates/controllers/daemonset.yaml index 275d8bdff4..3849464675 100644 --- a/operations/helm/tests/custom-config/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/custom-config/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/custom-config/alloy/templates/service.yaml b/operations/helm/tests/custom-config/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/custom-config/alloy/templates/service.yaml +++ b/operations/helm/tests/custom-config/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/default-values/alloy/templates/configmap.yaml b/operations/helm/tests/default-values/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/default-values/alloy/templates/configmap.yaml +++ b/operations/helm/tests/default-values/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/default-values/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/default-values/alloy/templates/controllers/daemonset.yaml index 275d8bdff4..3849464675 100644 --- a/operations/helm/tests/default-values/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/default-values/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/default-values/alloy/templates/service.yaml b/operations/helm/tests/default-values/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/default-values/alloy/templates/service.yaml +++ b/operations/helm/tests/default-values/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/configmap.yaml b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/configmap.yaml +++ b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/controllers/daemonset.yaml index 924b33a1ac..ce32813fa5 100644 --- a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/service.yaml b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/service.yaml +++ b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/servicemonitor.yaml b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/servicemonitor.yaml index 83d03c8f3c..ce6da8376f 100644 --- a/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/servicemonitor.yaml +++ b/operations/helm/tests/enable-servicemonitor-tls/alloy/templates/servicemonitor.yaml @@ -4,6 +4,7 @@ apiVersion: monitoring.coreos.com/v1 kind: ServiceMonitor metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor/alloy/templates/configmap.yaml b/operations/helm/tests/enable-servicemonitor/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/enable-servicemonitor/alloy/templates/configmap.yaml +++ b/operations/helm/tests/enable-servicemonitor/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/enable-servicemonitor/alloy/templates/controllers/daemonset.yaml index 275d8bdff4..3849464675 100644 --- a/operations/helm/tests/enable-servicemonitor/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/enable-servicemonitor/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor/alloy/templates/service.yaml b/operations/helm/tests/enable-servicemonitor/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/enable-servicemonitor/alloy/templates/service.yaml +++ b/operations/helm/tests/enable-servicemonitor/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/enable-servicemonitor/alloy/templates/servicemonitor.yaml b/operations/helm/tests/enable-servicemonitor/alloy/templates/servicemonitor.yaml index 929273ee47..7dce117353 100644 --- a/operations/helm/tests/enable-servicemonitor/alloy/templates/servicemonitor.yaml +++ b/operations/helm/tests/enable-servicemonitor/alloy/templates/servicemonitor.yaml @@ -4,6 +4,7 @@ apiVersion: monitoring.coreos.com/v1 kind: ServiceMonitor metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/envFrom/alloy/templates/configmap.yaml b/operations/helm/tests/envFrom/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/envFrom/alloy/templates/configmap.yaml +++ b/operations/helm/tests/envFrom/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/envFrom/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/envFrom/alloy/templates/controllers/daemonset.yaml index 0996d72be9..bfc4287cd1 100644 --- a/operations/helm/tests/envFrom/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/envFrom/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/envFrom/alloy/templates/service.yaml b/operations/helm/tests/envFrom/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/envFrom/alloy/templates/service.yaml +++ b/operations/helm/tests/envFrom/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/existing-config/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/existing-config/alloy/templates/controllers/daemonset.yaml index ac11c818d4..e11863e926 100644 --- a/operations/helm/tests/existing-config/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/existing-config/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/existing-config/alloy/templates/service.yaml b/operations/helm/tests/existing-config/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/existing-config/alloy/templates/service.yaml +++ b/operations/helm/tests/existing-config/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-env/alloy/templates/configmap.yaml b/operations/helm/tests/extra-env/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/extra-env/alloy/templates/configmap.yaml +++ b/operations/helm/tests/extra-env/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-env/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/extra-env/alloy/templates/controllers/daemonset.yaml index 7843c701c8..92ee32fe2f 100644 --- a/operations/helm/tests/extra-env/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/extra-env/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-env/alloy/templates/service.yaml b/operations/helm/tests/extra-env/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/extra-env/alloy/templates/service.yaml +++ b/operations/helm/tests/extra-env/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-manifests/alloy/templates/configmap.yaml b/operations/helm/tests/extra-manifests/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/extra-manifests/alloy/templates/configmap.yaml +++ b/operations/helm/tests/extra-manifests/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-manifests/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/extra-manifests/alloy/templates/controllers/daemonset.yaml index 275d8bdff4..3849464675 100644 --- a/operations/helm/tests/extra-manifests/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/extra-manifests/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-manifests/alloy/templates/service.yaml b/operations/helm/tests/extra-manifests/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/extra-manifests/alloy/templates/service.yaml +++ b/operations/helm/tests/extra-manifests/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-ports/alloy/templates/configmap.yaml b/operations/helm/tests/extra-ports/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/extra-ports/alloy/templates/configmap.yaml +++ b/operations/helm/tests/extra-ports/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-ports/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/extra-ports/alloy/templates/controllers/daemonset.yaml index dfa1601a28..f7bb38d8d4 100644 --- a/operations/helm/tests/extra-ports/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/extra-ports/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/extra-ports/alloy/templates/service.yaml b/operations/helm/tests/extra-ports/alloy/templates/service.yaml index e8edb80d7e..58119939d5 100644 --- a/operations/helm/tests/extra-ports/alloy/templates/service.yaml +++ b/operations/helm/tests/extra-ports/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/faro-ingress/alloy/templates/configmap.yaml b/operations/helm/tests/faro-ingress/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/faro-ingress/alloy/templates/configmap.yaml +++ b/operations/helm/tests/faro-ingress/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/faro-ingress/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/faro-ingress/alloy/templates/controllers/daemonset.yaml index f1581b4742..f5c43d83bb 100644 --- a/operations/helm/tests/faro-ingress/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/faro-ingress/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/faro-ingress/alloy/templates/service.yaml b/operations/helm/tests/faro-ingress/alloy/templates/service.yaml index 94dceaae52..5a7fe294e8 100644 --- a/operations/helm/tests/faro-ingress/alloy/templates/service.yaml +++ b/operations/helm/tests/faro-ingress/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/global-image-pullsecrets/alloy/templates/configmap.yaml b/operations/helm/tests/global-image-pullsecrets/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/global-image-pullsecrets/alloy/templates/configmap.yaml +++ b/operations/helm/tests/global-image-pullsecrets/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/global-image-pullsecrets/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/global-image-pullsecrets/alloy/templates/controllers/daemonset.yaml index 53d49596c7..1b01abc0e3 100644 --- a/operations/helm/tests/global-image-pullsecrets/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/global-image-pullsecrets/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/global-image-pullsecrets/alloy/templates/service.yaml b/operations/helm/tests/global-image-pullsecrets/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/global-image-pullsecrets/alloy/templates/service.yaml +++ b/operations/helm/tests/global-image-pullsecrets/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/global-image-registry/alloy/templates/configmap.yaml b/operations/helm/tests/global-image-registry/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/global-image-registry/alloy/templates/configmap.yaml +++ b/operations/helm/tests/global-image-registry/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/global-image-registry/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/global-image-registry/alloy/templates/controllers/daemonset.yaml index 1eadede39e..4f196a0008 100644 --- a/operations/helm/tests/global-image-registry/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/global-image-registry/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/global-image-registry/alloy/templates/service.yaml b/operations/helm/tests/global-image-registry/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/global-image-registry/alloy/templates/service.yaml +++ b/operations/helm/tests/global-image-registry/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/host-alias/alloy/templates/configmap.yaml b/operations/helm/tests/host-alias/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/host-alias/alloy/templates/configmap.yaml +++ b/operations/helm/tests/host-alias/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/host-alias/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/host-alias/alloy/templates/controllers/daemonset.yaml index e4d6d86b1c..7867bcef3b 100644 --- a/operations/helm/tests/host-alias/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/host-alias/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/host-alias/alloy/templates/service.yaml b/operations/helm/tests/host-alias/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/host-alias/alloy/templates/service.yaml +++ b/operations/helm/tests/host-alias/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/initcontainers/alloy/templates/configmap.yaml b/operations/helm/tests/initcontainers/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/initcontainers/alloy/templates/configmap.yaml +++ b/operations/helm/tests/initcontainers/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/initcontainers/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/initcontainers/alloy/templates/controllers/daemonset.yaml index 47af09ef89..2b867bf6f5 100644 --- a/operations/helm/tests/initcontainers/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/initcontainers/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/initcontainers/alloy/templates/service.yaml b/operations/helm/tests/initcontainers/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/initcontainers/alloy/templates/service.yaml +++ b/operations/helm/tests/initcontainers/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/lifecycle-hooks/alloy/templates/configmap.yaml b/operations/helm/tests/lifecycle-hooks/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/lifecycle-hooks/alloy/templates/configmap.yaml +++ b/operations/helm/tests/lifecycle-hooks/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/lifecycle-hooks/alloy/templates/controllers/deployment.yaml b/operations/helm/tests/lifecycle-hooks/alloy/templates/controllers/deployment.yaml index 1fec8908bf..a8805969e3 100644 --- a/operations/helm/tests/lifecycle-hooks/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/tests/lifecycle-hooks/alloy/templates/controllers/deployment.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/lifecycle-hooks/alloy/templates/service.yaml b/operations/helm/tests/lifecycle-hooks/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/lifecycle-hooks/alloy/templates/service.yaml +++ b/operations/helm/tests/lifecycle-hooks/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/local-image-pullsecrets/alloy/templates/configmap.yaml b/operations/helm/tests/local-image-pullsecrets/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/local-image-pullsecrets/alloy/templates/configmap.yaml +++ b/operations/helm/tests/local-image-pullsecrets/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/local-image-pullsecrets/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/local-image-pullsecrets/alloy/templates/controllers/daemonset.yaml index ae93233d9a..3ecc7a8531 100644 --- a/operations/helm/tests/local-image-pullsecrets/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/local-image-pullsecrets/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/local-image-pullsecrets/alloy/templates/service.yaml b/operations/helm/tests/local-image-pullsecrets/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/local-image-pullsecrets/alloy/templates/service.yaml +++ b/operations/helm/tests/local-image-pullsecrets/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/local-image-registry/alloy/templates/configmap.yaml b/operations/helm/tests/local-image-registry/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/local-image-registry/alloy/templates/configmap.yaml +++ b/operations/helm/tests/local-image-registry/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/local-image-registry/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/local-image-registry/alloy/templates/controllers/daemonset.yaml index 1eadede39e..4f196a0008 100644 --- a/operations/helm/tests/local-image-registry/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/local-image-registry/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/local-image-registry/alloy/templates/service.yaml b/operations/helm/tests/local-image-registry/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/local-image-registry/alloy/templates/service.yaml +++ b/operations/helm/tests/local-image-registry/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/configmap.yaml b/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/configmap.yaml +++ b/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/controllers/daemonset.yaml index c6094255e5..113fbc8a33 100644 --- a/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/service.yaml b/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/service.yaml +++ b/operations/helm/tests/nodeselectors-and-tolerations/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/nonroot/alloy/templates/configmap.yaml b/operations/helm/tests/nonroot/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/nonroot/alloy/templates/configmap.yaml +++ b/operations/helm/tests/nonroot/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/nonroot/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/nonroot/alloy/templates/controllers/daemonset.yaml index 40d64dc05d..cdb131daeb 100644 --- a/operations/helm/tests/nonroot/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/nonroot/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/nonroot/alloy/templates/service.yaml b/operations/helm/tests/nonroot/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/nonroot/alloy/templates/service.yaml +++ b/operations/helm/tests/nonroot/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/pod_annotations/alloy/templates/configmap.yaml b/operations/helm/tests/pod_annotations/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/pod_annotations/alloy/templates/configmap.yaml +++ b/operations/helm/tests/pod_annotations/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/pod_annotations/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/pod_annotations/alloy/templates/controllers/daemonset.yaml index 2ae5889cc2..9a5c503901 100644 --- a/operations/helm/tests/pod_annotations/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/pod_annotations/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/pod_annotations/alloy/templates/service.yaml b/operations/helm/tests/pod_annotations/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/pod_annotations/alloy/templates/service.yaml +++ b/operations/helm/tests/pod_annotations/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/sidecars/alloy/templates/configmap.yaml b/operations/helm/tests/sidecars/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/sidecars/alloy/templates/configmap.yaml +++ b/operations/helm/tests/sidecars/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/sidecars/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/sidecars/alloy/templates/controllers/daemonset.yaml index fc3c8d5874..3d51d1cfcb 100644 --- a/operations/helm/tests/sidecars/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/sidecars/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/sidecars/alloy/templates/service.yaml b/operations/helm/tests/sidecars/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/sidecars/alloy/templates/service.yaml +++ b/operations/helm/tests/sidecars/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/termination-grace-period/alloy/templates/configmap.yaml b/operations/helm/tests/termination-grace-period/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/termination-grace-period/alloy/templates/configmap.yaml +++ b/operations/helm/tests/termination-grace-period/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/termination-grace-period/alloy/templates/controllers/deployment.yaml b/operations/helm/tests/termination-grace-period/alloy/templates/controllers/deployment.yaml index 8a120d12d7..7c920da178 100644 --- a/operations/helm/tests/termination-grace-period/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/tests/termination-grace-period/alloy/templates/controllers/deployment.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/termination-grace-period/alloy/templates/service.yaml b/operations/helm/tests/termination-grace-period/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/termination-grace-period/alloy/templates/service.yaml +++ b/operations/helm/tests/termination-grace-period/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/topologyspreadconstraints/alloy/templates/configmap.yaml b/operations/helm/tests/topologyspreadconstraints/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/topologyspreadconstraints/alloy/templates/configmap.yaml +++ b/operations/helm/tests/topologyspreadconstraints/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/topologyspreadconstraints/alloy/templates/controllers/deployment.yaml b/operations/helm/tests/topologyspreadconstraints/alloy/templates/controllers/deployment.yaml index a4640ce095..b8f8f901ec 100644 --- a/operations/helm/tests/topologyspreadconstraints/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/tests/topologyspreadconstraints/alloy/templates/controllers/deployment.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/topologyspreadconstraints/alloy/templates/service.yaml b/operations/helm/tests/topologyspreadconstraints/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/topologyspreadconstraints/alloy/templates/service.yaml +++ b/operations/helm/tests/topologyspreadconstraints/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/with-digests/alloy/templates/configmap.yaml b/operations/helm/tests/with-digests/alloy/templates/configmap.yaml index 381ccbff2f..62d8c8642f 100644 --- a/operations/helm/tests/with-digests/alloy/templates/configmap.yaml +++ b/operations/helm/tests/with-digests/alloy/templates/configmap.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/with-digests/alloy/templates/controllers/daemonset.yaml b/operations/helm/tests/with-digests/alloy/templates/controllers/daemonset.yaml index 44b03c3615..49110ba686 100644 --- a/operations/helm/tests/with-digests/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/tests/with-digests/alloy/templates/controllers/daemonset.yaml @@ -4,6 +4,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy diff --git a/operations/helm/tests/with-digests/alloy/templates/service.yaml b/operations/helm/tests/with-digests/alloy/templates/service.yaml index 0e9857aef6..8780c6ce89 100644 --- a/operations/helm/tests/with-digests/alloy/templates/service.yaml +++ b/operations/helm/tests/with-digests/alloy/templates/service.yaml @@ -4,6 +4,7 @@ apiVersion: v1 kind: Service metadata: name: alloy + namespace: default labels: helm.sh/chart: alloy app.kubernetes.io/name: alloy