kubernetes-hackfest

Delivering modern cloud-native applications with open source technologies on Azure Kubernetes Service

View the Project on GitHub Azure/kubernetes-hackfest

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