1 00:00:02,580 --> 00:00:05,189 ‫Now that you've learned what Kubernetes is, how to get it 2 00:00:05,190 --> 00:00:07,799 ‫installed, and the basic commands that you're going to jump 3 00:00:07,860 --> 00:00:11,130 ‫into right out of the gate, let's talk now about 4 00:00:11,550 --> 00:00:13,559 ‫what you're likely going to want to do in production. 5 00:00:13,830 --> 00:00:15,960 ‫At least on all your servers. It may not be production. 6 00:00:15,990 --> 00:00:18,636 ‫Might be test or dev on servers, but you're definitely 7 00:00:18,780 --> 00:00:21,540 ‫going to change the way you use it. 8 00:00:21,870 --> 00:00:24,271 ‫If you're looking to adopt more DevOps practices, 9 00:00:24,600 --> 00:00:27,599 ‫infrastructure as code, or maybe even git-ops as 10 00:00:27,600 --> 00:00:30,090 ‫these trends increase in the amount of usage, 11 00:00:30,570 --> 00:00:32,481 ‫I really like those, and I think that you should use those 12 00:00:32,850 --> 00:00:35,172 ‫by the way. You're going to want to focus on YAML. 13 00:00:35,580 --> 00:00:38,369 ‫That's what this whole section is about is adopting the 14 00:00:38,640 --> 00:00:41,670 ‫kubectl apply method where you're putting everything in 15 00:00:41,690 --> 00:00:43,009 ‫YAML. You're changing YAML. 16 00:00:43,440 --> 00:00:45,329 ‫Then you're running the same commands over and over. 17 00:00:45,600 --> 00:00:48,320 ‫This is similar to Docker Swarm's stack deploy command. 18 00:00:48,360 --> 00:00:50,729 ‫You might be used to that from previous sections. 19 00:00:51,120 --> 00:00:52,990 ‫That's the way I recommend you use Kubernetes. 20 00:00:53,220 --> 00:00:55,425 ‫Let's dive into some good examples and how to 21 00:00:56,220 --> 00:00:56,539 ‫use it.