|
You are here |
ectobit.com | ||
| | | | |
vxlabs.com
|
|
| | | | | In this post I show how you can setup a Kubernetes pod for reproducible development purposes on a single-node Kubernetes cluster using Rancher Desktop on Linux or Docker Desktop for Windows. What are devcontainers? At my quasi-hypothetical workplace, we are fans of Visual Studio Code's development containers idea, or devcontainers for short. In short, you add a specially crafted devcontainer.json file (and some docker yamls) to your repo, and the next time a new dev opens the project, they will be prompt... | |
| | | | |
blog.nuculabs.de
|
|
| | | | | Hello, ?? In this article I will show you how to install Python versions on Linux using the following methods: compiling from source, dead snakes ppa and pyenv. To make things easier, if you want to follow along in an environment that you can break, you can create a local Kubernetes cluster using Minikube. Next, I'm going to use the following yaml file to create an Ubuntu pod: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 apiVersion: v1 kind: Pod metadata: name: ubuntu labels: app: ubuntu spec: containers: - image: ubuntu command: - "sleep" - "604800" imagePullPolicy: IfNotPresent name: ubuntu restartPolicy: Always Save the above yaml in a file ubuntu_pod.yaml and run: | |
| | | | |
martinheinz.dev
|
|
| | | | | As your project grows, it might get to the point that it becomes too hard to handle with just single VM or some simple SaaS solution. You can solve tha... | |
| | | | |
pikseladam.com
|
|
| | | I was using Puma as an app server and there were no web server for my site. It is not a good thing that you don't have a web server on production environment... | ||