Difference between revisions of "Kubectl run"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 24: Line 24:
 
== Related commands ==
 
== Related commands ==
 
* <code>[[kubectl apply]]</code>
 
* <code>[[kubectl apply]]</code>
 +
* <code>[[kubectl exec]]</code>
 
* <code>[[kubectl debug]]</code>
 
* <code>[[kubectl debug]]</code>
 
* <code>[[docker run]]</code>
 
* <code>[[docker run]]</code>

Revision as of 05:03, 9 March 2023

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

kubectl run
kubectl run nginx --image=nginx
--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: