Created
November 13, 2025 04:37
-
-
Save koorukuroo/bc4046872982dc5584849225f4db9bbf 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 apps namespace services | |
| # This allows default namespace to access apps namespace services | |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: fastapi-app-external | |
| namespace: default | |
| spec: | |
| type: ExternalName | |
| externalName: fastapi-app-my-fastapi-chart.apps.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