Search⌘ K
AI Features

Solution: Automated Agents

Explore how to implement automated agents in GitOps by configuring Kubernetes deployment specifications. Learn to set replica counts, pod selectors, and container details to validate and run cloud-native applications effectively on your cluster.

We'll cover the following...

Exercise solution

The interactive widget below contains the solution for the automated agents challenge. Use the solution to validate the work and resolve any issues encountered in the challenge.

from flask import Flask
app = Flask(__name__)


@app.route("/")
def hello_world():
    return 'Hello, Educative Learner! This is version 2.0'
Completed spec field to deploy a Kubernetes resource

Code explanation

Within the solution file, the completed spec for the deployment is provided to complete the exercise. ...