# container-meetup **Repository Path**: mirrors_DataDog/container-meetup ## Basic Information - **Project Name**: container-meetup - **Description**: ## Auto-archived due to inactivity. ## - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Container Meetup Guestbook Requirements: - A kubernetes cluster up and running and kubectl set up Create the guestbook app ```bash kubectl create -f guestbook/redis-master-controller.yaml kubectl create -f guestbook/redis-master-service.yaml kubectl create -f guestbook/frontend-controller.yaml kubectl create -f guestbook/frontend-service.yaml ``` Edit ddagent.yaml and set your API Key. Install the agent as a DaemonSet ```bash kubectl create -f ddagent.yaml ``` By now the frontend service should have acquired it's public ip ```bash kubectl get services ``` You can try the guestbook. You can also "stress test" it by running `python guestbook/guestbookpy/stress.py http://$PUBLIC_IP_OF_THE_FRONTEND_LOAD_BALANCER` (requires the `requests` library)