Questions tagged [kubernetes-deployment]
260 questions
-1
votes
1 answer
Deployment error while referring deployment yaml directly from remote URL
I have a file uploaded in cloud storage and when I try to deploy the yaml using the url of file it always throws below error, tried with multiple files and even with sample nginx yaml. Also I tried adding the same file in github repo but it did not…

saurabh umathe
- 315
- 2
- 17
-1
votes
1 answer
Azure Kubernetes - single node, two replicas: port issue?
I'm currently creating a Kubernetes cluster in Azure Kubernetes for a production environment. In my cluster, I will have single node in the node pool - pool1.
Now, I want to deploy an application with 2 replicas as shown below
apiVersion:…

One Developer
- 99
- 5
- 43
- 103
-1
votes
2 answers
Data not storing into local persistent storage kubernetes
I created Kubernetes persistent volume and claim & used them in deployment file.
Deployment working fine. But error i am having is data is still storing inside containers.
i want data to be store in pv which i created on local.
Below is my…

Dharmendra jha
- 101
- 2
- 11
-1
votes
2 answers
How to correctly define deployment spec file
I have to create deployment spec file that will:
Launch 3 replicas of the nginx image with label all_label
Deployment name star_deploy
Save a copy of this spec file to deployment_spec.yaml or json. After I am done, I need to clean up(delete) any…

O.Man
- 585
- 2
- 9
- 20
-1
votes
1 answer
Automation own job through Jenkins And publish over Kubernetes through HTTPD or NGINX
I have my some files which is in react lng. I am doing build from npm.I am doing locally this build.I have the build path.
I want to deploy this build to pods of the kubernetes.
how to write the deployment.yaml?
how to configure my nginx or httpd…