I'm trying to dockerize an multilayered .NET API project then deploy it and SQL Server to Kubernetes. After I have created k8s folder for .yaml files, I encounter a problem.
I have files like this :

And even though I've written same commands for every .yaml files in k8s folder, when I write kubectl get services , I can see only two files which are dotnetapp-mssql-cluster-ip-service and dotnetapp-server-cluster-ip-service .

When I try to kubectl create or kubectl apply for other files that I can't see on the services list, it says unchanged .

How can I see all my files when I write kubectl get services ?