You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[EPAM Systems, Inc.](https://epam.com/)| EPAM leverages Headlamp for their [edp-headlamp](https://github.com/epam/edp-headlamp) project, integrating it within their [KubeRocketCI](https://docs.kuberocketci.io/) open-source solution to enhance the user interface and experience for managing Platform using Kubernetes-native approach. |
14
+
|[KA-NABELL](https://www.ka-nabell.com/)| KA-NABELL, Japan's largest trading card e-commerce platform, contributes to Headlamp and uses it as a central operations hub for its microservices DevOps teams. They develop and extend official plugins (including a Knative plugin) alongside custom Headlamp plugins to streamline day-to-day application operations and integrate with their broader cloud native toolchain (including CNCF ecosystem tools and services). |
14
15
|[Microsoft](https://www.microsoft.com/)| Microsoft contributes to Headlamp, uses Headlamp internally, and also uses Headlamp as the basis for [AKS desktop](https://github.com/Azure/aks-desktop). |
15
16
|[Millennium bcp](https://www.millenniumbcp.pt/)| Millennium bcp is utilizing Headlamp as a User Interface to enhance visibility and streamline the configuration and deployment of microservices and applications. |
16
17
| [Oracle](https://www.oracle.com/) | [Oracle Cloud Native Environment (OCNE)](https://www.oracle.com/linux/cloud-native-environment/), based on open standards, specifications, and APIs defined by the Open Container Initiative and Cloud Native Computing Foundation (CNCF), includes a CNCF-certified Kubernetes module, container runtimes, virtualization, service mesh, storage, networking, observability, and diagnostics. Oracle leverages Headlamp and its plugin system for implementing its own [OCNE UI](https://docs.oracle.com/en/learn/ocne-ui/index.html).
{{- $fullName := include "headlamp.fullname" . -}}
3
+
{{- $svcPort := .Values.service.port -}}
4
+
apiVersion: gateway.networking.k8s.io/v1
5
+
kind: HTTPRoute
6
+
metadata:
7
+
name: {{ $fullName }}
8
+
namespace: {{ include "headlamp.namespace" . }}
9
+
labels:
10
+
{{- include "headlamp.labels" . | nindent 4 }}
11
+
{{- with .Values.httpRoute.labels }}
12
+
{{- toYaml . | nindent 4 }}
13
+
{{- end }}
14
+
{{- with .Values.httpRoute.annotations }}
15
+
annotations:
16
+
{{- toYaml . | nindent 4 }}
17
+
{{- end }}
18
+
spec:
19
+
parentRefs:
20
+
{{- required "A valid .Values.httpRoute.parentRefs entry is required when httpRoute.enabled is true" .Values.httpRoute.parentRefs | toYaml | nindent 4 }}
0 commit comments