Solution: Automated Agents

Follow step-by-step instructions for the automated agents exercise.

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. ...