-
-
Save yaakov-h/535fdc9a0f150d63c3cc006fb1f5c9d5 to your computer and use it in GitHub Desktop.
kubernetes-service.yaml
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: nginxsvc | |
labels: | |
app: nginx | |
spec: | |
ports: | |
- port: 80 | |
porotocal: TCP | |
targetPort: 80 | |
name: www.baidu.com | |
selector: 匹配器 | |
port: 80 | |
app: nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment