Created
October 28, 2019 20:43
-
-
Save ahmetkucukoglu/caf28d1d164fd4778d152154238c64d9 to your computer and use it in GitHub Desktop.
Kubernetes Sample - Service
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: my-k8s-api-service | |
namespace: development | |
spec: | |
type: LoadBalancer | |
selector: | |
app: my-k8s-api | |
ports: | |
- protocol: TCP | |
port: 1453 | |
targetPort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment