Created
July 31, 2021 02:58
-
-
Save ianychoi/54ea4bfcb9c4bb56eb8bf9a86cda9841 to your computer and use it in GitHub Desktop.
K8s-AKS-Loadbalancer 실습 파일
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
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: azure-lb-websrv | |
spec: | |
type: LoadBalancer | |
ports: | |
- port: 80 | |
targetPort: 8080 | |
selector: | |
app: deploy-websrv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment