Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

deployment.yaml 420 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: churn-prediction
  5. spec:
  6. replicas: 2
  7. selector:
  8. matchLabels:
  9. app: churn-prediction
  10. template:
  11. metadata:
  12. labels:
  13. app: churn-prediction
  14. spec:
  15. containers:
  16. - name: churn-prediction
  17. image: mlchurnprediction.azurecr.io/churn-prediction:latest
  18. imagePullPolicy: Always
  19. ports:
  20. - containerPort: 80
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...