
# db ===================================
---
kind: Service
apiVersion: v1
metadata:
  name: db
spec:
  ports:
  - protocol: TCP
    port: 3306
    targetPort: 3306

---
kind: Endpoints
apiVersion: v1
metadata:
  name: db
subsets:
- addresses:
  - ip: 35.225.19.171
  ports:
  - port: 3306

# cache ===================================
---
kind: Service
apiVersion: v1
metadata:
  name: cache
  labels:
    app: cache
spec:
  type: ClusterIP
  ports:
  - port: 6379
  selector:
    app: cache

---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: cache
spec:
  replicas: 1
  template:
    metadata:
      labels:
        app: cache
    spec:
      containers:
      - name: cache
        image: redis
        ports:
        - containerPort: 6379
