Skip to content

Instantly share code, notes, and snippets.

@canhtran
Created July 28, 2019 08:56
Show Gist options
  • Save canhtran/f498eb336f5c9e58ad569b3fc34da735 to your computer and use it in GitHub Desktop.
Save canhtran/f498eb336f5c9e58ad569b3fc34da735 to your computer and use it in GitHub Desktop.
data-devops-medium blog
apiVersion: apps/v1
kind: Deployment
metadata:
name: titanic-app
labels:
app: titanic-app
tier: backend
version: v1
spec:
selector:
matchLabels:
app: titanic-app
replicas: 2
template:
metadata:
labels:
app: titanic-app
spec:
containers:
- name: titanic-app
image: canhtran/titanic-app-demo:latest
ports:
- containerPort: 5000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment