Pods
List pods in current namespace
kubectl get pods
List pods i all namespaces
kubectl get pods -A
View details about a pod
kubectl describe pod <pod-name>
ConfigMaps
List ConfigMaps
kubectl get configmaps
View details about a ConfigMap
kubectl describe configmap <config-map-name>
Deployments
List Deployments
kubectl get deployments
View details about a Deployment
kubectl describe deployment <deployment-name>
Services
List Services
kubectl get services
View details about a Service
kubectl describe service <service-name>
ServiceAccounts
List ServiceAccounts
kubectl get serviceaccounts
View details about a ServiceAccount
kubectl describe serviceaccount <service-account-name>
Secrets
List all secrets
kubectl get secrets
View details about a secret
kubectl describe secret <secret-name>
Get secret contents as JSON
kubectl get secret <secret-name> -o jsonpath='{.data}'
Create a secret
kubectl create secret generic <secret-name> --from-literal=username=<username> --from-literal=password='<password>'
Edit a secret
kubectl edit secrets <secret-name>
Delete a secret
kubectl delete secret <secret-name>
IntegrationPlattform
Get all objects of kind IntegrationPlattform
kubectl get IntegrationPlatform
View settings of the IntegrationPlattform
kubectl describe IntegrationPlatform