Swarm vs Kubernetes Decision Helper
📖 Scenario: You are a DevOps engineer helping a small company decide which container orchestration tool to use: Docker Swarm or Kubernetes. You will create a simple program that stores key features of both tools, sets a decision threshold, compares the features, and outputs a recommendation.
🎯 Goal: Build a small program that holds feature data for Docker Swarm and Kubernetes, sets a threshold for decision making, compares the features, and prints a recommendation on which tool to choose based on the threshold.
📋 What You'll Learn
Create a dictionary called
features with keys 'Swarm' and 'Kubernetes' and integer values representing feature scoresCreate a variable called
threshold set to 7Use an
if statement to compare the feature scores to the thresholdPrint the recommendation exactly as specified
💡 Why This Matters
🌍 Real World
Companies often need to choose the right container orchestration tool based on their needs. This project simulates making that choice using simple data and logic.
💼 Career
DevOps engineers must understand differences between tools like Swarm and Kubernetes and be able to automate decisions and configurations.
Progress0 / 4 steps