tekton命令

 欢迎关注我的公众号:

 目前刚开始写一个月,一共写了18篇原创文章,文章目录如下:

istio多集群探秘,部署了50次多集群后我得出的结论

istio多集群链路追踪,附实操视频

istio防故障利器,你知道几个,istio新手不要读,太难!

istio业务权限控制,原来可以这么玩

istio实现非侵入压缩,微服务之间如何实现压缩

不懂envoyfilter也敢说精通istio系列-http-rbac-不要只会用AuthorizationPolicy配置权限

不懂envoyfilter也敢说精通istio系列-02-http-corsFilter-不要只会vs

不懂envoyfilter也敢说精通istio系列-03-http-csrf filter-再也不用再代码里写csrf逻辑了

不懂envoyfilter也敢说精通istio系列http-jwt_authn-不要只会RequestAuthorization

不懂envoyfilter也敢说精通istio系列-05-fault-filter-故障注入不止是vs

不懂envoyfilter也敢说精通istio系列-06-http-match-配置路由不只是vs

不懂envoyfilter也敢说精通istio系列-07-负载均衡配置不止是dr

不懂envoyfilter也敢说精通istio系列-08-连接池和断路器

不懂envoyfilter也敢说精通istio系列-09-http-route filter

不懂envoyfilter也敢说精通istio系列-network filter-redis proxy

不懂envoyfilter也敢说精通istio系列-network filter-HttpConnectionManager

不懂envoyfilter也敢说精通istio系列-ratelimit-istio ratelimit完全手册

 

tekton新课发布:ci/cd之tekton实战--其他视频教程-系统/网络/运维-CSDN程序员研修院

命令详解

task

Aliases:
  task, t, tasks
​
Available Commands:
  delete      Delete Tasks in a namespace
  describe    Describe a Task in a namespace
  list        Lists Tasks in a namespace
  logs        Show Task logs
  start       Start Tasks

tkn task delete hello -n tekton

tkn task describe workspaces -n tekton

tkn task logs say-message -n tekton

tkn task list -n tekton

tkn task start goodbye -n tekton

taskrun

Aliases:
  taskrun, tr, taskruns
​
Available Commands:
  cancel      Cancel a TaskRun in a namespace
  delete      Delete TaskRuns in a namespace
  describe    Describe a TaskRun in a namespace
  list        Lists TaskRuns in a namespace
  logs        Show TaskRuns logs

tkn taskrun cancel goodbye-run-wsz8h -ntekton

tkn taskrun delete goodbye-run-wsz8h -ntekton

tkn taskrun describe goodbye-run-t6zwh -ntekton

tkn taskrun list -n tekton

tkn taskrun logs goodbye-run-t6zwh -n tekton

clustertask

Aliases:
  clustertask, ct, clustertasks
​
Available Commands:
  delete      Delete ClusterTasks in a cluster
  describe    Describe a ClusterTask
  list        Lists ClusterTasks
  logs        Show ClusterTask logs
  start       Start ClusterTasks

tkn clustertask list -n tekton

tkn clustertask describe kubectl-deploy -n tekton

tkn clustertask logs kubectl-deploy -n tekton

tkn clustertask start kubectl-deploy -n tekton

tkn clustertask delete kubectl-deploy -n tekton

pipeline

Aliases:
  pipeline, p, pipelines
​
Available Commands:
  delete      Delete Pipelines in a namespace
  describe    Describes a Pipeline in a namespace
  list        Lists Pipelines in a namespace
  logs        Show Pipeline logs
  start       Start Pipelines

tkn pipeline list -n tekton

tkn pipeline describe hello-goodbye -n tekton

tkn pipeline logs hello-goodbye -n tekton

tkn pipeline start hello-goodbye -n tekton

tkn pipeline delete hello-goodbye -n tekton

pipelinerun

Aliases:
  pipelinerun, pr, pipelineruns
​
Available Commands:
  cancel      Cancel a PipelineRun in a namespace
  delete      Delete PipelineRuns in a namespace
  describe    Describe a PipelineRun in a namespace
  list        Lists PipelineRuns in a namespace
  logs        Show the logs of a PipelineRun
​

tkn pipelinerun list -n tekton

tkn pipelinerun describe mypipeline-run62q46 -n tekton

tkn pipelinerun logs mypipeline-run62q46 -n tekton

tkn pipelinerun cancel mypipeline-run62q46 -n tekton

tkn pipelinerun delete mypipeline-run62q46 -n tekton

resource

Aliases:
  resource, res, resources
​
Available Commands:
  create      Create a pipeline resource in a namespace
  delete      Delete pipeline resources in a namespace
  describe    Describes a pipeline resource in a namespace
  list        Lists pipeline resources in a namespace

tkn resource list -n tekton

tkn resource describe pr -n tekton

tkn resource create -n tekton

tkn resource delete ss -n tekton

condition

Aliases:
  condition, cond, conditions
​
Available Commands:
  delete      Delete Conditions in a namespace
  describe    Describe Conditions in a namespace
  list        Lists Conditions in a namespace

tkn condition list -n tekton

tkn condition describe is-equal -n tekton

tkn condition delete is-equal -n tekton

bundle

Aliases:
  bundle, tkb, bundles
​
Available Commands:
  list        List and print a Tekton bundle's contents
  push        Create or replace a Tekton bundle

tkn bundle list registry.cn-shanghai.aliyuncs.com/hxpdocker/bundle-test:latest

tkn bundle push registry.cn-shanghai.aliyuncs.com/hxpdocker/bundle-test:latest -f task.yaml

triggertemplate

Aliases:
  triggertemplate, tt, triggertemplates
​
Available Commands:
  delete      Delete TriggerTemplates in a namespace
  describe    Describes a TriggerTemplate in a namespace
  list        Lists TriggerTemplates in a namespace

tkn triggertemplate list -ntekton

tkn triggertemplate describe template -ntekton

tkn triggertemplate delete template -ntekton

eventlistener

Aliases:
  eventlistener, el, eventlisteners
​
Available Commands:
  delete      Delete EventListeners in a namespace
  describe    Describe EventListener in a namespace
  list        Lists EventListeners in a namespace
  logs        Show EventListener logs

tkn eventlistener list -n tekton

tkn eventlistener describe listener -n tekton

tkn eventlistener logs listener -n tekton

tkn eventlistener delete listener -n tekton

triggerbinding

Aliases:
  triggerbinding, tb, triggerbindings
​
Available Commands:
  delete      Delete TriggerBindings in a namespace
  describe    Describes a TriggerBinding in a namespace
  list        Lists TriggerBindings in a namespace

tkn triggerbinding list -n tekton

tkn triggerbinding describe binding -n tekton

tkn triggerbinding delete binding -n tekton

clustertriggerbinding

Aliases:
  clustertriggerbinding, ctb, clustertriggerbindings
​
Available Commands:
  delete      Delete ClusterTriggerBindings
  describe    Describes a ClusterTriggerBinding
  list        Lists ClusterTriggerBindings in a namespace

tkn clustertriggerbinding list -n tekton

tkn clustertriggerbinding describe message-clusterbinding -n tekton

tkn clustertriggerbinding delete message-clusterbinding -n tekton

hub

​
Available Commands:
  downgrade   Downgrade an installed resource
  get         Get resource manifest by its name, kind, catalog, and version
  info        Display info of resource by its name, kind, catalog, and version
  install     Install a resource from a catalog by its kind, name and version
  reinstall   Reinstall a resource by its kind and name
  search      Search resource by a combination of name, kind, and tags
  upgrade     Upgrade an installed resource

tkn hub search maven

tkn hub get task maven

tkn hub info task maven

tkn hub install task maven

tkn hub upgrade task maven -n tekton

tkn hub reinstall task maven -n tekton

tkn hub downgrade task maven -n tekton

tkn hub downgrade task foo --to 0.3 -n tekton

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

hxpjava1

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值