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 423 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
21
  1. # deployment
  2. apiVersion: apps/v1
  3. kind: Deployment
  4. metadata:
  5. name: churn-prediction
  6. spec:
  7. replicas: 3
  8. selector:
  9. matchLabels:
  10. app: churn-prediction
  11. template:
  12. metadata:
  13. labels:
  14. app: churn-prediction
  15. spec:
  16. containers:
  17. - name: churn-prediction-container
  18. image: karan842/churn-prediction:latest
  19. imagePullPolicy: Always
  20. ports:
  21. - containerPort: 80
Tip!

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

Comments

Loading...