This is an automated email from the ASF dual-hosted git repository.

vterentev pushed a commit to branch metrics-grafana
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 06b05d1a0ddbd5434ed67589f0801de13560ddd8
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Fri Jul 4 11:07:34 2025 +0400

    Add ingress object for Grafana metrics
---
 .../metrics/kubernetes/beam-metrics-ingress.yaml   | 36 ++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/.test-infra/metrics/kubernetes/beam-metrics-ingress.yaml 
b/.test-infra/metrics/kubernetes/beam-metrics-ingress.yaml
new file mode 100644
index 00000000000..66cad059df0
--- /dev/null
+++ b/.test-infra/metrics/kubernetes/beam-metrics-ingress.yaml
@@ -0,0 +1,36 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+  name: beam-metrics-ingress
+  annotations:
+    kubernetes.io/ingress.global-static-ip-name: beam-metrics-grafana-ip
+    kubernetes.io/ingress.allow-http: "true"
+  labels:
+    app: beam-metrics
+spec:
+  rules:
+    - host: "metrics.beam.apache.org"
+      http:
+        paths:
+          - path: "/*"
+            pathType: ImplementationSpecific
+            backend:
+              service:
+                name: beamgrafana
+                port:
+                  number: 80
\ No newline at end of file

Reply via email to