This video is available as a preview of the StreamNative Academy course: StreamNative Pulsar Operations Training. The list of all videos available as preview is available here:
• Course Preview: StreamNative Pulsar O...
The playlist includes a subset of videos from StreamNative Academy's fully self-paced hands-on operations training: StreamNative Pulsar Operations Training. The course uses StreamNative's licensed StreamNative Operator for cluster management in your kubernetes environment. The StreamNative Operator is used for installation and management of StreamNative's Enterprise Pulsar offering: Private Cloud.
Contact StreamNative Sales for more information about StreamNative Private Cloud powered by the StreamNative Operator:
https://streamnative.io/book-a-demo
Detailed course information (click Register today for a detailed description of StreamNative Pulsar Operations Training):
https://streamnative.io/training#led
For more information on StreamNative Private Cloud:
https://docs.streamnative.io/private/...
Install Prometheus:
helm install prometheus prometheus-community/prometheus -n monitor --set alertmanager.enabled=false --set kube-state-metrics.enabled=false --set prometheus-node-exporter.enabled=false --set prometheus-pushgateway.enabled=false
Expose Prometheus:
kubectl expose svc prometheus-server --name prom-external --port 9090 --target-port 9090 -n monitor --type LoadBalancer
Install Grafana with custom image for Private Cloud:
helm install grafana grafana/grafana -n monitor --set image.repository=streamnative/private-cloud-grafana --set image.tag=0.1.1
Expose Grafana:
kubectl expose svc grafana --name grafana-external -n monitor --port 3000 --target-port 3000 --type LoadBalancer
Get Grafana admin password:
kubectl get secret --namespace monitor grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo