Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1005 Bytes

File metadata and controls

39 lines (24 loc) · 1005 Bytes

Lab: Stateful Sets

Coming soon.

Prerequisites

Instructions

  1. Install MongoDB Statefulset with Helm

    Helm helps you manage Kubernetes applications — Helm Charts helps you define, install, and upgrade even the most complex Kubernetes application. Helm has a CLI component and a server side component called Tiller.

    • Helm should already be installed in the cluster from previous exercise, so we will just need to deploy the MongoDB Chart:
    cd ~/kubernetes-hackfest
    helm install stable/mongodb --name mongodb
    • Validate the install of mongodb:
    kubectl get pods //TODO
  2. Connect to MongoDB Cluster

Troubleshooting / Debugging

Docs / References