- Writing a Custom Controller: Extending the Functionality of Your Cluster [I] - Aaron Levy(CoreOS): https://youtu.be/_BuqPMlXfpE
- Writing Kube Controllers for Everyone - Maciej Szulik, Red Hat (Beginner Skill Level): https://youtu.be/AUNPLQVxvmw
- Programming Kubernetes with the Go SDK [I] - Aaron Schlesinger, Deis: https://youtu.be/qiB4RxCDC8o
- TGI Kubernetes 007: Building a Controller - Heptio: https://youtu.be/8Xo_ghCIOSY
- TGI Kubernetes 008: Continuing the Controller - Heptio: https://youtu.be/fWkK-zsFtlU
- TGI Kubernetes 009: Finishing the Controller - heptio: https://youtu.be/wqhKCiGsf1Y
- Kubernetes Operators: Managing Complex Software with Software [I] - Josh Wood & Jesus Carrillo: https://youtu.be/cj5uk1uje_Y
- Deep Dive: Operator Framework BoF - Diane Mueller & Sebastian Pahl, Red Hat: https://youtu.be/fu7ecA2rXmc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # To run this file you will need to open Powershell as administrator and first run: | |
| # Set-ExecutionPolicy Unrestricted | |
| # Then source this script by running: | |
| # . .\install_python.ps1 | |
| $save_dir=Resolve-Path ~/Downloads | |
| $project_dir = "C:\Projects" | |
| $virtualenv_dir = $project_dir + "\virtualenvs" | |
| $client = New-Object System.Net.WebClient |