skip to Main Content

Calico & K8S on Azure – can't access pods – Debian

I'm starting with K8S. I installed 2 Debian 10 VMs on Azure (1 master node & 2 slaves). I installed the master node with this doc: https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/ I installed Calico with this one : https://docs.projectcalico.org/getting-started/kubernetes/installation/calico#installing-with-the-kubernetes-api-datastore50-nodes-or-less I created a simple nginx…

VIEW QUESTION

C# Stop process started by my own process – Debian

I made a launcher for my ARK Server where I can easily change my settings and start. I start the server with this: Process serverprocess = new Process(); serverprocess.StartInfo.FileName = Path.GetFileName(serverpath); serverprocess.StartInfo.Arguments = launch; serverprocess.StartInfo.UseShellExecute = false; serverprocess.Start(); serverprocess.WaitForExit(); But…

VIEW QUESTION

Docker compose file for linux Debian and Arch

Hope I'm doing this correctly... First of we are using docker-compose with a yml file. Looking something like that: sudo docker-compose -f docker-compose.yml up -d In the yml file we have something similar to: version: '3.4' services: MyContainer: image: "MyContainer:latest"…

VIEW QUESTION
Back To Top
Search