From 95e55570e02a32932fdad3fa8229c5c43b2d16d3 Mon Sep 17 00:00:00 2001 From: Shinebayar Gansukh <3091558+shinebayar-g@users.noreply.github.com> Date: Tue, 5 Nov 2024 14:24:00 -0800 Subject: [PATCH 1/4] fix(helm): ensure helm resources have correct namespace --- operations/helm/charts/alloy/CHANGELOG.md | 6 ++++-- operations/helm/charts/alloy/templates/cluster_service.yaml | 1 + operations/helm/charts/alloy/templates/configmap.yaml | 1 + .../helm/charts/alloy/templates/controllers/daemonset.yaml | 1 + .../helm/charts/alloy/templates/controllers/deployment.yaml | 1 + .../charts/alloy/templates/controllers/statefulset.yaml | 1 + operations/helm/charts/alloy/templates/hpa.yaml | 1 + operations/helm/charts/alloy/templates/ingress.yaml | 2 +- operations/helm/charts/alloy/templates/service.yaml | 1 + operations/helm/charts/alloy/templates/servicemonitor.yaml | 1 + 10 files changed, 13 insertions(+), 3 deletions(-) diff --git a/operations/helm/charts/alloy/CHANGELOG.md b/operations/helm/charts/alloy/CHANGELOG.md index cfe067dfc5..69d02cc92e 100644 --- a/operations/helm/charts/alloy/CHANGELOG.md +++ b/operations/helm/charts/alloy/CHANGELOG.md @@ -17,6 +17,10 @@ Unreleased - Add support for adding hostAliases to the Helm chart. (@duncan485) - Update to Grafana Alloy v1.5.0. (@thampiotr) +### Bug Fixes + +- Set resource namespace correctly (@shinebayar-g) + 0.9.2 (2024-10-18) ------------------ @@ -72,7 +76,6 @@ Unreleased - Update helm chart to use v1.3.1. - 0.6.0 (2024-08-05) ------------------ @@ -124,7 +127,6 @@ Unreleased - Update to Grafana Alloy v1.1.0. (@rfratto) - 0.2.0 (2024-05-08) ------------------ diff --git a/operations/helm/charts/alloy/templates/cluster_service.yaml b/operations/helm/charts/alloy/templates/cluster_service.yaml index e0453b88fd..4ceea550a8 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: {{ .Release.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..1f4cbf09f9 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: {{ .Release.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..47c4c100cc 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: {{ .Release.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..7e5833926c 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: {{ .Release.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..83242f86ca 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: {{ .Release.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..d2922f7850 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: {{ .Release.Namespace }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: availability diff --git a/operations/helm/charts/alloy/templates/ingress.yaml b/operations/helm/charts/alloy/templates/ingress.yaml index 51a6e5731f..5e1c468962 100644 --- a/operations/helm/charts/alloy/templates/ingress.yaml +++ b/operations/helm/charts/alloy/templates/ingress.yaml @@ -11,7 +11,7 @@ apiVersion: {{ include "alloy.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} - namespace: {{ include "alloy.namespace" . }} + namespace: {{ .Release.Namespace }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: networking diff --git a/operations/helm/charts/alloy/templates/service.yaml b/operations/helm/charts/alloy/templates/service.yaml index 8afdf57745..9cf5524cad 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: {{ .Release.Namespace }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: networking diff --git a/operations/helm/charts/alloy/templates/servicemonitor.yaml b/operations/helm/charts/alloy/templates/servicemonitor.yaml index 3249116fa2..5b9c9f8fe2 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: {{ .Release.Namespace }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: metrics From 89e9ab3a19c98d851cc6401d6157ae8783ac5182 Mon Sep 17 00:00:00 2001 From: Shinebayar Gansukh <3091558+shinebayar-g@users.noreply.github.com> Date: Wed, 6 Nov 2024 07:38:19 -0800 Subject: [PATCH 2/4] replace {{ .Release.Namespace }} with `include alloy.namespace .` --- .../alloy/templates/cluster_service.yaml | 2 +- .../charts/alloy/templates/configmap.yaml | 2 +- .../templates/controllers/daemonset.yaml | 2 +- .../templates/controllers/deployment.yaml | 2 +- .../templates/controllers/statefulset.yaml | 2 +- .../helm/charts/alloy/templates/hpa.yaml | 2 +- .../helm/charts/alloy/templates/ingress.yaml | 2 +- .../helm/charts/alloy/templates/pdb.yaml | 4 +-- .../helm/charts/alloy/templates/rbac.yaml | 2 +- .../helm/charts/alloy/templates/service.yaml | 2 +- .../alloy/templates/serviceaccount.yaml | 2 +- .../alloy/templates/servicemonitor.yaml | 2 +- operations/helm/charts/alloy/values.yaml | 33 +++++++++++-------- 13 files changed, 33 insertions(+), 26 deletions(-) diff --git a/operations/helm/charts/alloy/templates/cluster_service.yaml b/operations/helm/charts/alloy/templates/cluster_service.yaml index 4ceea550a8..090ad523cb 100644 --- a/operations/helm/charts/alloy/templates/cluster_service.yaml +++ b/operations/helm/charts/alloy/templates/cluster_service.yaml @@ -4,7 +4,7 @@ apiVersion: v1 kind: Service metadata: name: {{ include "alloy.fullname" . }}-cluster - namespace: {{ .Release.Namespace }} + 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 1f4cbf09f9..59308e61eb 100644 --- a/operations/helm/charts/alloy/templates/configmap.yaml +++ b/operations/helm/charts/alloy/templates/configmap.yaml @@ -4,7 +4,7 @@ apiVersion: v1 kind: ConfigMap metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + 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 47c4c100cc..b6929955f4 100644 --- a/operations/helm/charts/alloy/templates/controllers/daemonset.yaml +++ b/operations/helm/charts/alloy/templates/controllers/daemonset.yaml @@ -3,7 +3,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + 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 7e5833926c..07d6912dc6 100644 --- a/operations/helm/charts/alloy/templates/controllers/deployment.yaml +++ b/operations/helm/charts/alloy/templates/controllers/deployment.yaml @@ -3,7 +3,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + 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 83242f86ca..a290834a97 100644 --- a/operations/helm/charts/alloy/templates/controllers/statefulset.yaml +++ b/operations/helm/charts/alloy/templates/controllers/statefulset.yaml @@ -6,7 +6,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + 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 d2922f7850..57bcc096e6 100644 --- a/operations/helm/charts/alloy/templates/hpa.yaml +++ b/operations/helm/charts/alloy/templates/hpa.yaml @@ -16,7 +16,7 @@ apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: availability diff --git a/operations/helm/charts/alloy/templates/ingress.yaml b/operations/helm/charts/alloy/templates/ingress.yaml index 5e1c468962..51a6e5731f 100644 --- a/operations/helm/charts/alloy/templates/ingress.yaml +++ b/operations/helm/charts/alloy/templates/ingress.yaml @@ -11,7 +11,7 @@ apiVersion: {{ include "alloy.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} - namespace: {{ .Release.Namespace }} + namespace: {{ include "alloy.namespace" . }} labels: {{- include "alloy.labels" . | nindent 4 }} app.kubernetes.io/component: networking 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 9cf5524cad..53f79b3c6b 100644 --- a/operations/helm/charts/alloy/templates/service.yaml +++ b/operations/helm/charts/alloy/templates/service.yaml @@ -4,7 +4,7 @@ apiVersion: v1 kind: Service metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + 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 5b9c9f8fe2..382b38a233 100644 --- a/operations/helm/charts/alloy/templates/servicemonitor.yaml +++ b/operations/helm/charts/alloy/templates/servicemonitor.yaml @@ -4,7 +4,7 @@ apiVersion: monitoring.coreos.com/v1 kind: ServiceMonitor metadata: name: {{ include "alloy.fullname" . }} - namespace: {{ .Release.Namespace }} + 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..9e5bc18684 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 @@ -10,7 +13,7 @@ fullnameOverride: null global: image: # -- Global image registry to use if it needs to be overriden for some specific use cases (e.g local registries, custom images, ...) - registry: "" + registry: '' # -- Optional set of global image pull secrets. pullSecrets: [] @@ -42,14 +45,14 @@ alloy: enabled: false # -- Name for the Alloy cluster. Used for differentiating between clusters. - name: "" + name: '' # -- Name for the port used for clustering, useful if running inside an Istio Mesh portName: http # -- Minimum stability level of components and behavior to enable. Must be # one of "experimental", "public-preview", or "generally-available". - stabilityLevel: "generally-available" + stabilityLevel: 'generally-available' # -- Path to where Grafana Alloy stores data (for example, the Write-Ahead Log). # By default, data is lost between reboots. @@ -113,7 +116,8 @@ alloy: resources: {} # -- Set lifecycle hooks for the Grafana Alloy container. - lifecycle: {} + lifecycle: + {} # preStop: # exec: # command: @@ -122,7 +126,7 @@ alloy: image: # -- Grafana Alloy image registry (defaults to docker.io) - registry: "docker.io" + registry: 'docker.io' # -- Grafana Alloy image repository. repository: grafana/alloy # -- (string) Grafana Alloy image tag. When empty, the Chart's appVersion is @@ -156,20 +160,20 @@ configReloader: enabled: true image: # -- Config reloader image registry (defaults to docker.io) - registry: "ghcr.io" + registry: 'ghcr.io' # -- Repository to get config reloader image from. repository: jimmidyson/configmap-reload # -- Tag of image to use for config reloading. tag: v0.12.0 # -- SHA256 digest of image to use for config reloading (either in format "sha256:XYZ" or "XYZ"). When set, will override `configReloader.image.tag` - digest: "" + digest: '' # -- Override the args passed to the container. customArgs: [] # -- Resource requests and limits to apply to the config reloader container. resources: requests: - cpu: "1m" - memory: "5Mi" + cpu: '1m' + memory: '5Mi' # -- Security context to apply to the Grafana configReloader container. securityContext: {} @@ -250,7 +254,8 @@ controller: scaleDown: # -- List of policies to determine the scale-down behavior. - policies: [] + policies: + [] # - type: Pods # value: 4 # periodSeconds: 60 @@ -261,7 +266,8 @@ controller: scaleUp: # -- List of policies to determine the scale-up behavior. - policies: [] + policies: + [] # - type: Pods # value: 4 # periodSeconds: 60 @@ -299,7 +305,8 @@ service: clusterIP: '' # -- Value for internal traffic policy. 'Cluster' or 'Local' internalTrafficPolicy: Cluster - annotations: {} + annotations: + {} # cloud.google.com/load-balancer-type: Internal serviceMonitor: @@ -307,7 +314,7 @@ serviceMonitor: # -- Additional labels for the service monitor. additionalLabels: {} # -- Scrape interval. If not set, the Prometheus default scrape interval is used. - interval: "" + interval: '' # -- MetricRelabelConfigs to apply to samples after scraping, but before ingestion. # ref: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#relabelconfig metricRelabelings: [] From 7569975d9db8671707dfd7e7727961c106a5672f Mon Sep 17 00:00:00 2001 From: Shinebayar Gansukh <3091558+shinebayar-g@users.noreply.github.com> Date: Wed, 6 Nov 2024 07:41:10 -0800 Subject: [PATCH 3/4] revert fortmatter changes --- operations/helm/charts/alloy/CHANGELOG.md | 9 ++++--- operations/helm/charts/alloy/values.yaml | 30 ++++++++++------------- 2 files changed, 18 insertions(+), 21 deletions(-) diff --git a/operations/helm/charts/alloy/CHANGELOG.md b/operations/helm/charts/alloy/CHANGELOG.md index 69d02cc92e..5f9b383d83 100644 --- a/operations/helm/charts/alloy/CHANGELOG.md +++ b/operations/helm/charts/alloy/CHANGELOG.md @@ -10,17 +10,18 @@ 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) - Update to Grafana Alloy v1.5.0. (@thampiotr) -### Bug Fixes - -- Set resource namespace correctly (@shinebayar-g) - 0.9.2 (2024-10-18) ------------------ diff --git a/operations/helm/charts/alloy/values.yaml b/operations/helm/charts/alloy/values.yaml index 9e5bc18684..4990ce7b2f 100644 --- a/operations/helm/charts/alloy/values.yaml +++ b/operations/helm/charts/alloy/values.yaml @@ -13,7 +13,7 @@ fullnameOverride: null global: image: # -- Global image registry to use if it needs to be overriden for some specific use cases (e.g local registries, custom images, ...) - registry: '' + registry: "" # -- Optional set of global image pull secrets. pullSecrets: [] @@ -45,14 +45,14 @@ alloy: enabled: false # -- Name for the Alloy cluster. Used for differentiating between clusters. - name: '' + name: "" # -- Name for the port used for clustering, useful if running inside an Istio Mesh portName: http # -- Minimum stability level of components and behavior to enable. Must be # one of "experimental", "public-preview", or "generally-available". - stabilityLevel: 'generally-available' + stabilityLevel: "generally-available" # -- Path to where Grafana Alloy stores data (for example, the Write-Ahead Log). # By default, data is lost between reboots. @@ -116,8 +116,7 @@ alloy: resources: {} # -- Set lifecycle hooks for the Grafana Alloy container. - lifecycle: - {} + lifecycle: {} # preStop: # exec: # command: @@ -126,7 +125,7 @@ alloy: image: # -- Grafana Alloy image registry (defaults to docker.io) - registry: 'docker.io' + registry: "docker.io" # -- Grafana Alloy image repository. repository: grafana/alloy # -- (string) Grafana Alloy image tag. When empty, the Chart's appVersion is @@ -160,20 +159,20 @@ configReloader: enabled: true image: # -- Config reloader image registry (defaults to docker.io) - registry: 'ghcr.io' + registry: "ghcr.io" # -- Repository to get config reloader image from. repository: jimmidyson/configmap-reload # -- Tag of image to use for config reloading. tag: v0.12.0 # -- SHA256 digest of image to use for config reloading (either in format "sha256:XYZ" or "XYZ"). When set, will override `configReloader.image.tag` - digest: '' + digest: "" # -- Override the args passed to the container. customArgs: [] # -- Resource requests and limits to apply to the config reloader container. resources: requests: - cpu: '1m' - memory: '5Mi' + cpu: "1m" + memory: "5Mi" # -- Security context to apply to the Grafana configReloader container. securityContext: {} @@ -254,8 +253,7 @@ controller: scaleDown: # -- List of policies to determine the scale-down behavior. - policies: - [] + policies: [] # - type: Pods # value: 4 # periodSeconds: 60 @@ -266,8 +264,7 @@ controller: scaleUp: # -- List of policies to determine the scale-up behavior. - policies: - [] + policies: [] # - type: Pods # value: 4 # periodSeconds: 60 @@ -305,8 +302,7 @@ service: clusterIP: '' # -- Value for internal traffic policy. 'Cluster' or 'Local' internalTrafficPolicy: Cluster - annotations: - {} + annotations: {} # cloud.google.com/load-balancer-type: Internal serviceMonitor: @@ -314,7 +310,7 @@ serviceMonitor: # -- Additional labels for the service monitor. additionalLabels: {} # -- Scrape interval. If not set, the Prometheus default scrape interval is used. - interval: '' + interval: "" # -- MetricRelabelConfigs to apply to samples after scraping, but before ingestion. # ref: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#relabelconfig metricRelabelings: [] From e2ee28723a238e8a10a29994e87848645fb74b26 Mon Sep 17 00:00:00 2001 From: Shinebayar Gansukh <3091558+shinebayar-g@users.noreply.github.com> Date: Mon, 18 Nov 2024 13:22:05 -0800 Subject: [PATCH 4/4] run make generate-helm-docs and make generate-helm-tests --- operations/helm/charts/alloy/README.md | 1 + .../alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../additional-serviceaccount-label/alloy/templates/service.yaml | 1 + .../helm/tests/clustering/alloy/templates/cluster_service.yaml | 1 + operations/helm/tests/clustering/alloy/templates/configmap.yaml | 1 + .../clustering/alloy/templates/controllers/statefulset.yaml | 1 + operations/helm/tests/clustering/alloy/templates/service.yaml | 1 + .../alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/deployment.yaml | 1 + .../alloy/templates/service.yaml | 1 + .../alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/deployment.yaml | 1 + .../alloy/templates/service.yaml | 1 + .../alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/statefulset.yaml | 1 + .../alloy/templates/service.yaml | 1 + .../alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/statefulset.yaml | 1 + .../alloy/templates/service.yaml | 1 + .../controller-volumes-extra/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../tests/controller-volumes-extra/alloy/templates/service.yaml | 1 + .../create-daemonset-hostnetwork/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../create-daemonset-hostnetwork/alloy/templates/service.yaml | 1 + .../helm/tests/create-daemonset/alloy/templates/configmap.yaml | 1 + .../create-daemonset/alloy/templates/controllers/daemonset.yaml | 1 + .../helm/tests/create-daemonset/alloy/templates/service.yaml | 1 + .../create-deployment-autoscaling/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/deployment.yaml | 1 + .../tests/create-deployment-autoscaling/alloy/templates/hpa.yaml | 1 + .../create-deployment-autoscaling/alloy/templates/service.yaml | 1 + .../helm/tests/create-deployment/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/deployment.yaml | 1 + .../helm/tests/create-deployment/alloy/templates/service.yaml | 1 + .../alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/statefulset.yaml | 1 + .../create-statefulset-autoscaling/alloy/templates/hpa.yaml | 1 + .../create-statefulset-autoscaling/alloy/templates/service.yaml | 1 + .../helm/tests/create-statefulset/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/statefulset.yaml | 1 + .../helm/tests/create-statefulset/alloy/templates/service.yaml | 1 + .../helm/tests/custom-config/alloy/templates/configmap.yaml | 1 + .../custom-config/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/custom-config/alloy/templates/service.yaml | 1 + .../helm/tests/default-values/alloy/templates/configmap.yaml | 1 + .../default-values/alloy/templates/controllers/daemonset.yaml | 1 + .../helm/tests/default-values/alloy/templates/service.yaml | 1 + .../enable-servicemonitor-tls/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../tests/enable-servicemonitor-tls/alloy/templates/service.yaml | 1 + .../alloy/templates/servicemonitor.yaml | 1 + .../tests/enable-servicemonitor/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../tests/enable-servicemonitor/alloy/templates/service.yaml | 1 + .../enable-servicemonitor/alloy/templates/servicemonitor.yaml | 1 + operations/helm/tests/envFrom/alloy/templates/configmap.yaml | 1 + .../tests/envFrom/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/envFrom/alloy/templates/service.yaml | 1 + .../existing-config/alloy/templates/controllers/daemonset.yaml | 1 + .../helm/tests/existing-config/alloy/templates/service.yaml | 1 + operations/helm/tests/extra-env/alloy/templates/configmap.yaml | 1 + .../tests/extra-env/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/extra-env/alloy/templates/service.yaml | 1 + operations/helm/tests/extra-ports/alloy/templates/configmap.yaml | 1 + .../tests/extra-ports/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/extra-ports/alloy/templates/service.yaml | 1 + .../helm/tests/faro-ingress/alloy/templates/configmap.yaml | 1 + .../faro-ingress/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/faro-ingress/alloy/templates/service.yaml | 1 + .../global-image-pullsecrets/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../tests/global-image-pullsecrets/alloy/templates/service.yaml | 1 + .../tests/global-image-registry/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../tests/global-image-registry/alloy/templates/service.yaml | 1 + operations/helm/tests/host-alias/alloy/templates/configmap.yaml | 1 + .../tests/host-alias/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/host-alias/alloy/templates/service.yaml | 1 + .../helm/tests/initcontainers/alloy/templates/configmap.yaml | 1 + .../initcontainers/alloy/templates/controllers/daemonset.yaml | 1 + .../helm/tests/initcontainers/alloy/templates/service.yaml | 1 + .../helm/tests/lifecycle-hooks/alloy/templates/configmap.yaml | 1 + .../lifecycle-hooks/alloy/templates/controllers/deployment.yaml | 1 + .../helm/tests/lifecycle-hooks/alloy/templates/service.yaml | 1 + .../tests/local-image-pullsecrets/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../tests/local-image-pullsecrets/alloy/templates/service.yaml | 1 + .../tests/local-image-registry/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../helm/tests/local-image-registry/alloy/templates/service.yaml | 1 + .../nodeselectors-and-tolerations/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/daemonset.yaml | 1 + .../nodeselectors-and-tolerations/alloy/templates/service.yaml | 1 + operations/helm/tests/nonroot/alloy/templates/configmap.yaml | 1 + .../tests/nonroot/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/nonroot/alloy/templates/service.yaml | 1 + .../helm/tests/pod_annotations/alloy/templates/configmap.yaml | 1 + .../pod_annotations/alloy/templates/controllers/daemonset.yaml | 1 + .../helm/tests/pod_annotations/alloy/templates/service.yaml | 1 + operations/helm/tests/sidecars/alloy/templates/configmap.yaml | 1 + .../tests/sidecars/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/sidecars/alloy/templates/service.yaml | 1 + .../termination-grace-period/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/deployment.yaml | 1 + .../tests/termination-grace-period/alloy/templates/service.yaml | 1 + .../topologyspreadconstraints/alloy/templates/configmap.yaml | 1 + .../alloy/templates/controllers/deployment.yaml | 1 + .../tests/topologyspreadconstraints/alloy/templates/service.yaml | 1 + .../helm/tests/with-digests/alloy/templates/configmap.yaml | 1 + .../with-digests/alloy/templates/controllers/daemonset.yaml | 1 + operations/helm/tests/with-digests/alloy/templates/service.yaml | 1 + 113 files changed, 113 insertions(+) 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/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