Created
November 13, 2025 04:37
-
-
Save koorukuroo/d676af5f2e9245a09cfa27d43147485f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ExternalName Service for monitoring namespace services | |
| # This allows default namespace to access monitoring namespace services | |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: grafana-external | |
| namespace: default | |
| spec: | |
| type: ExternalName | |
| externalName: prometheus-grafana.monitoring.svc.cluster.local | |
| ports: | |
| - port: 80 | |
| targetPort: 80 | |
| protocol: TCP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment