This is an accompanying repository for the Conductor Quickstart documentation. It contains only the essential deployment and configuration files needed to quickly deploy the Hello Kubernetes application into Kubernetes and explore its capabilities with Diagrid Conductor.
To deploy this application, ensure that you have Conductor connected to your Kubernetes environment. Follow the detailed steps in Conductor Quickstart Documentation to set up your environment.
This application comprises a Python App that generates messages and a Node App that stores these messages in a Redis state store. Follow these steps to deploy a Redis instance and the application into Kubernetes.
Install Redis using Helm:
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update
helm install redis bitnami/redis --set cluster.enabled=false --set replica.replicaCount=0 --set fullnameOverride=dapr-dev-redis
Apply the Kubernetes resources directly from the GitHub repository to deploy the applications:
kubectl apply -f https://raw.githubusercontent.com/diagrid-labs/conductor-quickstart/main/deploy.yaml
For more detailed information and further steps, please refer to the Conductor Quickstart Documentation or visit the Conductor page on the Diagrid website to learn about how Conductor can help you operate Dapr applications on Kubernetes.