Resources
Authoring references
Reference training
Framework documentation
MkDocs Material
Dynatrace
Orbital Operations server
- URL:
https://autonomous-enablements.whydevslovedynatrace.com
- Contact: Orbital administrator (Slack: #enablement-orbital)
GitHub Codespaces
Quick reference — kubectl commands for trainers
# Cluster status
kubectl get nodes
kubectl get pods --all-namespaces
# Watch pod lifecycle
kubectl get pods -n <namespace> --watch
# Describe a resource
kubectl describe pod <pod-name> -n <namespace>
# Check annotations (OneAgent injection)
kubectl get pods -n todoapp -o jsonpath='{.items[*].metadata.annotations}'
# Rolling restart
kubectl rollout restart deployment -n <namespace>
kubectl rollout status deployment -n <namespace> --timeout=120s
# DynaKube
kubectl get dynakube -n dynatrace
kubectl describe dynakube -n dynatrace
Quick reference — framework shell functions
# Print section header
printInfoSection "Section heading"
# Print info line
printInfo "Info message"
# Deploy standard apps
deployTodoApp
deployAstroshop
# Dynatrace operator
dynatraceEvalReadSaveCredentials
generateDynakube
dynatraceDeployOperator
# Docs
installMkdocs
exposeMkdocs
deployGhdocs
# Cluster
startK3dCluster
installK9s
# Codespace management
deleteCodespace