Kubernetes Manifest Deployments
Kubernetes manifests are used to create, modify and delete Kubernetes resources such as pods, deployments, services or ingresses. It is very common to define manifests in form of .yaml files and send them to the Kubernetes API Server via commands such as kubectl apply -f my-file.yaml or kubectl delete -f my-file.yaml.
Learn more about how to configure kubectl deployments.
In order to deploy kubernets manifests with DevSpace make sure you have
kubectlinstalled and the manifests can be deployed viakubectl apply -f my-file.yaml.