I have a folder with name "myspec" which has some kube-spec files , let's say
- pod.yaml , service.yaml, secret.yaml
when I run the command "kubectl create -f myspec" it creates everything , pod , service and secret.
Now I wish to perform the same thing using kubernetes go client library.
I am able to create the pod using kubernetes go client library , i am passing json file and namespace name to the function and it unmarhshal to the v1.Pod object and call the create function as below