diff --git a/operations/helm/charts/alloy/CHANGELOG.md b/operations/helm/charts/alloy/CHANGELOG.md index cfe067dfc5..5f9b383d83 100644 --- a/operations/helm/charts/alloy/CHANGELOG.md +++ b/operations/helm/charts/alloy/CHANGELOG.md @@ -10,8 +10,13 @@ internal API changes are not present. Unreleased ---------- +### Bug Fixes + +- Set resource namespace correctly (@shinebayar-g) + 0.10.0 (2024-11-13) ---------- + ### Enhancements - Add support for adding hostAliases to the Helm chart. (@duncan485) @@ -72,7 +77,6 @@ Unreleased - Update helm chart to use v1.3.1. - 0.6.0 (2024-08-05) ------------------ @@ -124,7 +128,6 @@ Unreleased - 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 ee53707b14..342fe6bc07 100644 --- a/operations/helm/charts/alloy/README.md +++ b/operations/helm/charts/alloy/README.md @@ -123,6 +123,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 4aa892c7eb..4990ce7b2f 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 4d9474b7ef..3115060af0 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 8972a08e6b..a965557a72 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 72a0d49a3d..4957479029 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 72a0d49a3d..4957479029 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 e953031d61..681f04f91e 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 e953031d61..681f04f91e 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 6dce3c8fa5..97dc17c250 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 1d75b14409..8ce1031cae 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 4d9474b7ef..3115060af0 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 b53d9ad8ed..a10ad7cce9 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 72a0d49a3d..4957479029 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 9146f6b8d2..ff3612b030 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 e953031d61..681f04f91e 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 4d9474b7ef..3115060af0 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 4d9474b7ef..3115060af0 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 07bbf1331e..51ce95c674 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 4d9474b7ef..3115060af0 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 71bb1d1eec..0a6fe1ebb1 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 ebea934e31..6f12388cbc 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 cb9bb328c8..c24e3296fb 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-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 cd9a8d391e..15216ebac0 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 405a4242ab..ca4e892c2f 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 a7e2c3a7f8..3933384f05 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 422a6edd09..989893488c 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 3cf8558ef9..1140766260 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 11935c9c47..d46ac4ccff 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 af71461cf7..a67c5ac223 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 19cb2adcf3..89c96e87f8 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 422a6edd09..989893488c 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 0164da26d1..a344c57cf0 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 842a1cb3b1..186138428e 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 48000f3227..5112850755 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 0c096d1939..29ca67ce08 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 42cb679036..9621798fcb 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 a832d7368a..7fdd252be4 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