Difference between revisions of "Kubectl run"

From wikieduonline
Jump to navigation Jump to search
(Created page with "{{Draft}} == See also == * {{kubectl}} Category:Kubernetes")
Tags: Mobile web edit, Mobile edit
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{Draft}}
 
{{Draft}}
 +
{{lc}}
  
 +
<pre>
 +
--restart=Never will create a Pod
 +
--restart=Always and --replicas will create a Deployment
 +
--restart=OnFailure will create a Job
 +
--restart=OnFailure and --schedule will create a CronJob
 +
</pre>
  
 +
kubectl run -it --rm --image=mysql:5.6 --restart=Never mysql-client -- mysql -h mysql -ppassword
  
 +
[[kubectl run nginx]] --image=nginx
 +
 +
[[kubectl run]] my-mariadb-client --rm --tty -i --restart='Never' --image  docker.io/bitnami/mariadb:10.6.8-debian-10-r0 --namespace default --command -- bash
 +
 +
== Changelog ==
 +
* [[v1.18]] <code>kubectl run</code> now only creates [[pods]]
 +
 +
== Related commands ==
 +
* <code>[[kubectl apply]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 19:13, 27 May 2022

This article is a Draft. Help us to complete it.

--restart=Never will create a Pod
--restart=Always and --replicas will create a Deployment
--restart=OnFailure will create a Job
--restart=OnFailure and --schedule will create a CronJob
kubectl run -it --rm --image=mysql:5.6 --restart=Never mysql-client -- mysql -h mysql -ppassword
kubectl run nginx --image=nginx
kubectl run my-mariadb-client --rm --tty -i --restart='Never' --image  docker.io/bitnami/mariadb:10.6.8-debian-10-r0 --namespace default --command -- bash

Changelog

Related commands

See also

Advertising: