Skip to content

Instantly share code, notes, and snippets.

@ualmtorres
Created May 14, 2020 08:24
Show Gist options
  • Save ualmtorres/ac4fe06c224488753c66feb1eb696db6 to your computer and use it in GitHub Desktop.
Save ualmtorres/ac4fe06c224488753c66feb1eb696db6 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Service
metadata:
name: mysql
namespace: demo
spec:
type: ClusterIP
ports:
- port: 3306
selector:
app: mysql
---
apiVersion: v1
kind: Service
metadata:
name: sgapi
namespace: demo
spec:
type: ClusterIP
ports:
- port: 80
selector:
app: sgapi
---
apiVersion: v1
kind: Service
metadata:
name: sgapp
namespace: demo
spec:
type: LoadBalancer
ports:
- port: 80
selector:
app: sgapp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment