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实战--其他视频教程-系统/网络/运维-优快云程序员研修院

命令详解

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

一、为什么学习kubernetes众所周知,随着容器的快速发展,容器管理工具kubernetes也应运而生,目前不仅百度、京东、阿里、google等大公司在使用kubernetes,一些中小企业也开始把业务迁移到kubernetes,那么作为运维、开发、测试或者架构师来说,必须要掌握这项技术,才能提现我们的工作价值,才能在行业具备保持较高的技术水平,kubernetes作为成熟的容器编排工具,具有容器集群的自动化部署、自动化伸缩和故障自恢复的能力,让容器的部署和管理变得更加容易,能够给企业和提供一个智能化的容器云管理平台,为企业快速上云提供一个安全可靠的解决方案,此课程主要介绍kubernetes1.14/kubernetes1.15版本高可用集群的安装部署和使用,通过我多年工作经验总结,带你深入体验企业实战案例,让您轻松快速的掌握k8s,接下来让我们一起出发吧。 二、课程亮点 三、讲师简介 先超(lucky):高级运维工程师、资深DevOps工程师,在互联网上市公司拥有多年一线运维经验,主导过亿级pv项目的架构设计和运维工作 主要研究方向: 1.云计算方向:容器 (kubernetes、docker),虚拟化(kvm、Vmware vSphere),微服务(istio),PaaS(openshift),IaaS(openstack)等2.系统/运维方向:linux系统下的常用组件(nginx,tomcat,elasticsearch,zookeeper,kafka等),DevOps(Jenkins+gitlab+sonarqube+nexus+k8s),CI/CD,监控(zabbix、prometheus、falcon)等.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

hxpjava1

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

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

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

打赏作者

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

抵扣说明:

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

余额充值