-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathopenshift-pipelines-operator-rh.clusterserviceversion.yaml
1046 lines (936 loc) · 37.8 KB
/
openshift-pipelines-operator-rh.clusterserviceversion.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: operators.coreos.com/v1alpha1
kind: ClusterServiceVersion
metadata:
annotations:
alm-examples: "[\n {\n \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n\
\ \"kind\": \"TektonAddon\",\n \"metadata\": {\n \"name\": \"addon\"\
\n },\n \"spec\": {\n \"targetNamespace\": \"openshift-pipelines\"\
\n }\n },\n {\n \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n\
\ \"kind\": \"TektonChain\",\n \"metadata\": {\n \"name\": \"chain\"\
\n },\n \"spec\": {\n \"targetNamespace\": \"openshift-pipelines\"\
\n }\n },\n {\n \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n\
\ \"kind\": \"TektonConfig\",\n \"metadata\": {\n \"name\": \"config\"\
\n },\n \"spec\": {\n \"addon\": {\n \"params\": [\n \
\ {\n \"name\": \"clusterTasks\",\n \"value\": \"\
true\"\n },\n {\n \"name\": \"pipelineTemplates\"\
,\n \"value\": \"true\"\n },\n {\n \"\
name\": \"communityResolverTasks\",\n \"value\": \"true\"\n \
\ }\n ]\n },\n \"params\": [\n {\n \"name\"\
: \"createRbacResource\",\n \"value\": \"true\"\n }\n ],\n\
\ \"profile\": \"all\",\n \"pruner\": {\n \"keep\": 100,\n\
\ \"resources\": [\n \"pipelinerun\",\n \"taskrun\"\
\n ],\n \"schedule\": \"0 8 * * *\"\n },\n \"targetNamespace\"\
: \"openshift-pipelines\"\n }\n },\n {\n \"apiVersion\": \"operator.tekton.dev/v1alpha1\"\
,\n \"kind\": \"TektonHub\",\n \"metadata\": {\n \"name\": \"hub\"\
\n },\n \"spec\": {\n \"api\": {\n \"hubConfigUrl\": \"https://raw.githubusercontent.com/tektoncd/hub/main/config.yaml\"\
\n }\n }\n },\n {\n \"apiVersion\": \"operator.tekton.dev/v1alpha1\"\
,\n \"kind\": \"TektonInstallerSet\",\n \"metadata\": {\n \"name\"\
: \"foo\"\n },\n \"spec\": {\n \"manifests\": []\n }\n },\n \
\ {\n \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n \"kind\": \"\
TektonPipeline\",\n \"metadata\": {\n \"name\": \"pipeline\"\n },\n\
\ \"spec\": {\n \"targetNamespace\": \"openshift-pipelines\"\n }\n\
\ },\n {\n \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n \"kind\"\
: \"TektonTrigger\",\n \"metadata\": {\n \"name\": \"trigger\"\n \
\ },\n \"spec\": {\n \"targetNamespace\": \"openshift-pipelines\"\n\
\ }\n }\n]"
capabilities: Full Lifecycle
categories: Developer Tools, Integration & Delivery
certified: 'false'
description: Red Hat OpenShift Pipelines is a cloud-native CI/CD solution for
building pipelines using Tekton concepts which run natively on OpenShift and
Kubernetes.
olm.skipRange: '>=1.6.0 <1.7.0'
operators.openshift.io/infrastructure-features: '["disconnected","proxy-aware"]'
operators.operatorframework.io/builder: operator-sdk-v1.21.0
operators.operatorframework.io/internal-objects: '["tektoninstallersets.operator.tekton.dev",
"tektonconfigs.operator.tekton.dev","tektonpipelines.operator.tekton.dev","tektontriggers.operator.tekton.dev","tektonaddons.operator.tekton.dev",
"tektonhubs.operator.tekton.dev", "tektonchains.operator.tekton.dev"]'
operators.operatorframework.io/project_layout: unknown
repository: https://github.com/openshift/tektoncd-operator
support: Red Hat
labels:
operatorframework.io/arch.amd64: supported
operatorframework.io/arch.arm64: supported
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
name: openshift-pipelines-operator-rh.v1.8.0
namespace: placeholder
spec:
apiservicedefinitions: {}
customresourcedefinitions:
owned:
- description: Represents an installation of latest version of Addons (exclusively
ClusterTasks, consoleyamlsamples, consoleclidownloads and consolequickstarts)
displayName: Tekton Addons
kind: TektonAddon
name: tektonaddons.operator.tekton.dev
resources:
- kind: tektoninstallersets
name: ''
version: v1alpha1
specDescriptors:
- description: Namespace where Addons installed
displayName: Target Namespace
path: targetNamespace
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The version of Addons installed
displayName: Version
path: version
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
version: v1alpha1
- kind: TektonChain
name: tektonchains.operator.tekton.dev
version: v1alpha1
- description: Represents an installation of latest version of Tekton components,
TektonPipeline, TektonTrigger and TektonAddon
displayName: Tekton Configuration
kind: TektonConfig
name: tektonconfigs.operator.tekton.dev
resources:
- kind: tektonpipelines
name: pipeline
version: v1alpha1
- kind: tektontriggers
name: trigger
version: v1alpha1
- kind: tektonaddons
name: addon
version: v1alpha1
specDescriptors:
- description: Namespace where Tekton components are installed
displayName: Target Namespace
path: targetNamespace
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
- description: Installation Profile (specifies which of the Tekton components
are installed)
displayName: Profile
path: profile
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The version of Operator installed
displayName: Version
path: version
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
version: v1alpha1
- description: Represents an installation of latest version of Hub
displayName: Tekton Hub
kind: TektonHub
name: tektonhubs.operator.tekton.dev
resources:
- kind: tektoninstallersets
name: ''
version: v1alpha1
specDescriptors:
- description: Namespace where Addons installed
displayName: Target Namespace
path: targetNamespace
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The version of Addons installed
displayName: Version
path: version
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
version: v1alpha1
- description: This CustomResourceDefinition (CRD) is used internally by the other
OpenShift Pipelines CRDs to maintain the lifecycle of OpenShift Pipelines
Components
displayName: Tekton Installer Set
kind: TektonInstallerSet
name: tektoninstallersets.operator.tekton.dev
resources:
- kind: clusterroles
name: ''
version: v1
- kind: customresourcedefinitions
name: ''
version: v1beta1
- kind: deployments
name: ''
version: v1beta1
- kind: clusterrolebindings
name: ''
version: v1beta1
- kind: services
name: ''
version: v1
- kind: pods
name: ''
version: v1
- kind: configmaps
name: ''
version: v1
- kind: config
name: ''
version: v1alpha1
- kind: namespaces
name: ''
version: v1
- kind: serviceaccounts
name: ''
version: v1
specDescriptors:
- description: List of OpenShift API resources managed by this InstallerSet
displayName: Manifests
path: manifests
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The version of Operator installed
displayName: ObservedGeneration
path: observedGeneration
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
version: v1alpha1
- description: Represents an installation of latest version of Tekton Pipelines
displayName: Tekton Pipelines
kind: TektonPipeline
name: tektonpipelines.operator.tekton.dev
resources:
- kind: tektoninstallersets
name: ''
version: v1alpha1
specDescriptors:
- description: Namespace where Tekton Pipelines installed
displayName: Target Namespace
path: targetNamespace
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The version of Tekton Pipelines installed
displayName: Version
path: version
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
version: v1alpha1
- description: Represents an installation of latest version of Tekton Triggers
displayName: Tekton Triggers
kind: TektonTrigger
name: tektontriggers.operator.tekton.dev
resources:
- kind: tektoninstallersets
name: ''
version: v1alpha1
specDescriptors:
- description: Namespace where Tekton Triggers installed
displayName: Target Namespace
path: targetNamespace
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The version of Tekton Triggers installed
displayName: Version
path: version
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
version: v1alpha1
description: 'Red Hat OpenShift Pipelines is a cloud-native continuous integration
and delivery
(CI/CD) solution for building pipelines using [Tekton](https://tekton.dev).
Tekton is a flexible Kubernetes-native open-source CI/CD framework, which
enables automating deployments across multiple platforms (Kubernetes,
serverless, VMs, etc) by abstracting away the underlying details.
## Features
* Standard CI/CD pipelines definition
* Build images with Kubernetes tools such as S2I, Buildah, Buildpacks, Kaniko,
etc
* Deploy applications to multiple platforms such as Kubernetes, serverless and
VMs
* Easy to extend and integrate with existing tools
* Scale pipelines on-demand
* Portable across any Kubernetes platform
* Designed for microservices and decentralized team
* Integrated with OpenShift Developer Console
## Installation
_Red Hat OpenShift Pipelines Operator_ gets installed into a single namespace
(openshift-operators) which would then install _Red Hat OpenShift Pipelines_ into
the openshift-pipelines namespace. _Red Hat OpenShift Pipelines_ is however cluster-wide
and can run pipelines created in any namespace.
### Components
- Tekton Pipelines: v0.28.1
- Tekton Triggers: v0.16.0
- ClusterTasks based on Tekton Catalog 0.28
## Getting Started
In order to get familiar with _OpenShift Pipelines_ concepts and create your first
pipeline, follow the [OpenShift Pipelines Docs](https://docs.openshift.com/container-platform/OPENSHIFT_DOCS_VERSION/cicd/pipelines/creating-applications-with-cicd-pipelines.html).
## CLI (tkn)
Tekton Pipelines cli project provides a CLI (tkn) for interacting with OpenShift
Pipelines.
[Download tkn](/command-line-tools) (links will be available on `command line
tools` page after this operator is installed).
'
displayName: Red Hat OpenShift Pipelines
icon:
- base64data: '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
'
mediatype: image/png
install:
spec:
clusterPermissions:
- rules:
- apiGroups:
- ''
resources:
- pods
- services
- endpoints
- persistentvolumeclaims
- events
- configmaps
- secrets
- pods/log
- limitranges
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- extensions
- apps
resources:
- ingresses
- ingresses/status
verbs:
- delete
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- ''
resources:
- namespaces
verbs:
- get
- list
- create
- update
- delete
- patch
- watch
- apiGroups:
- apps
resources:
- deployments
- daemonsets
- replicasets
- statefulsets
- deployments/finalizers
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- monitoring.coreos.com
resources:
- servicemonitors
verbs:
- get
- create
- delete
- apiGroups:
- rbac.authorization.k8s.io
resources:
- clusterroles
- roles
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- bind
- escalate
- apiGroups:
- ''
resources:
- serviceaccounts
verbs:
- get
- list
- create
- update
- delete
- patch
- watch
- impersonate
- apiGroups:
- rbac.authorization.k8s.io
resources:
- clusterrolebindings
- rolebindings
verbs:
- get
- create
- update
- delete
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
- customresourcedefinitions/status
verbs:
- get
- create
- update
- delete
- list
- patch
- watch
- apiGroups:
- admissionregistration.k8s.io
resources:
- mutatingwebhookconfigurations
- validatingwebhookconfigurations
verbs:
- get
- list
- create
- update
- delete
- patch
- watch
- apiGroups:
- build.knative.dev
resources:
- builds
- buildtemplates
- clusterbuildtemplates
verbs:
- get
- list
- create
- update
- delete
- patch
- watch
- apiGroups:
- extensions
resources:
- deployments
verbs:
- get
- list
- create
- update
- delete
- patch
- watch
- apiGroups:
- extensions
resources:
- deployments/finalizers
verbs:
- get
- list
- create
- update
- delete
- patch
- watch
- apiGroups:
- operator.tekton.dev
resources:
- '*'
- tektonaddons
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- tekton.dev
- triggers.tekton.dev
- operator.tekton.dev
resources:
- '*'
verbs:
- add
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- dashboard.tekton.dev
resources:
- '*'
- tektonaddons
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- security.openshift.io
resources:
- securitycontextconstraints
verbs:
- use
- get
- create
- update
- delete
- apiGroups:
- route.openshift.io
resources:
- routes
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- get
- list
- create
- update
- delete
- patch
- watch
- apiGroups:
- console.openshift.io
resources:
- consoleyamlsamples
- consoleclidownloads
- consolequickstarts
- consolelinks
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- autoscaling
resources:
- horizontalpodautoscalers
verbs:
- delete
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- policy
resources:
- poddisruptionbudgets
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- monitoring.coreos.com
resources:
- servicemonitors
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- batch
resources:
- jobs
- cronjobs
verbs:
- delete
- deletecollection
- create
- patch
- get
- list
- update
- watch
- apiGroups:
- ''
resources:
- namespaces/finalizers
verbs:
- update
- apiGroups:
- resolution.tekton.dev
resources:
- resolutionrequests
verbs:
- get
- list
- watch
- create
- delete
serviceAccountName: openshift-pipelines-operator
deployments:
- label:
operator.tekton.dev/release: devel
version: devel
name: openshift-pipelines-operator
spec:
replicas: 1
selector:
matchLabels:
app: openshift-pipelines-operator
name: openshift-pipelines-operator
strategy: {}
template:
metadata:
labels:
app: openshift-pipelines-operator
name: openshift-pipelines-operator
spec:
containers:
- env:
- name: SYSTEM_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: redhat-openshift-pipelines-operator
- name: IMAGE_PIPELINES_PROXY
value: registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8@
- name: IMAGE_JOB_PRUNER_TKN
value: registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8@
- name: METRICS_DOMAIN
value: tekton.dev/operator
- name: VERSION
value: devel
- name: AUTOINSTALL_COMPONENTS
valueFrom:
configMapKeyRef:
key: AUTOINSTALL_COMPONENTS
name: tekton-config-defaults
- name: DEFAULT_TARGET_NAMESPACE
valueFrom:
configMapKeyRef:
key: DEFAULT_TARGET_NAMESPACE
name: tekton-config-defaults
- name: CONFIG_OBSERVABILITY_NAME
value: tekton-config-observability
- name: IMAGE_HUB_TEKTON_HUB_DB
value: registry.redhat.io/rhel8/postgresql-13@sha256:757d8dd6f243717d820846da7144a49913f28f223b74ec305b2215f54720f8a0
- name: IMAGE_ADDONS_PARAM_BUILDER_IMAGE
value: registry.redhat.io/rhel8/buildah@sha256:6d2dcb651ba680cf4ec74331f8349dec43d071d420625a1703370acc8d984e9e
- name: IMAGE_ADDONS_PARAM_KN_IMAGE
value: registry.redhat.io/openshift-serverless-1/client-kn-rhel8@sha256:37109f6de75dda750496f6668164d0dceaf9db5278e8c034708436f39de3276e
- name: IMAGE_ADDONS_MVN_SETTINGS
value: registry.redhat.io/ubi9/ubi-minimal@sha256:14f14e03d68f7fd5f2b18a13478b6b127c341b346c86b6e0b886ed2b7573b8e0
- name: IMAGE_ADDONS_SKOPEO_COPY
value: registry.redhat.io/rhel8/skopeo@sha256:7fd65200b4847fc84fba0466519b87f915e28c0e9bc90d3022beecfebffd4af8
- name: IMAGE_ADDONS_GENERATE
value: registry.redhat.io/source-to-image/source-to-image-rhel8@sha256:3696cf724ce7865626ae408d82fd87727c741e4d3eb3475c271ec6d56f0882a4
- name: IMAGE_PIPELINES_TEKTON_PIPELINES_CONTROLLER
value: registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8@
- name: IMAGE_PIPELINES_WEBHOOK
value: registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8@
- name: IMAGE_PIPELINES_ARG__ENTRYPOINT_IMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@
- name: IMAGE_PIPELINES_ARG__GIT_IMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8@
- name: IMAGE_ADDONS_PARAM_GITINITIMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8@
- name: IMAGE_PIPELINES_ARG__WORKINGDIRINIT_IMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8@
- name: IMAGE_PIPELINES_ARG__NOP_IMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8@
- name: IMAGE_PIPELINES_ARG__SHELL_IMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@
- name: IMAGE_TRIGGERS_TEKTON_TRIGGERS_CONTROLLER
value: registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8@
- name: IMAGE_TRIGGERS_WEBHOOK
value: registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8@
- name: IMAGE_TRIGGERS_TEKTON_TRIGGERS_CORE_INTERCEPTORS
value: registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@
- name: IMAGE_TRIGGERS_ARG__EL_IMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@
- name: IMAGE_ADDONS_PARAM_TKN_IMAGE
value: registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8@
- name: IMAGE_ADDONS_TKN_CLI_SERVE
value: registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8@
- name: IMAGE_CHAINS_TEKTON_CHAINS_CONTROLLER
value: registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8@
- name: IMAGE_RESULTS_TEKTON_RESULTS_API
value: registry.redhat.io/openshift-pipelines/tekton-results-api-rhel8@
- name: IMAGE_RESULTS_TEKTON_RESULTS_WATCHER
value: registry.redhat.io/openshift-pipelines/tekton-results-watcher-rhel8@
- name: IMAGE_RESULTS_RETENTION_POLICY_AGENT
value: registry.redhat.io/openshift-pipelines/tekton-results-retention-policy-agent-rhel8@
- name: IMAGE_HUB_TEKTON_HUB_DB_MIGRATION
value: registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8@
- name: IMAGE_HUB_TEKTON_HUB_API
value: registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8@
- name: IMAGE_HUB_TEKTON_HUB_UI
value: registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8@
- name: IMAGE_PAC_TRIGGERTEMPLATE_APPLY_AND_LAUNCH
value: registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8@
image: registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator@
imagePullPolicy: Always
name: openshift-pipelines-operator
resources: {}
serviceAccountName: openshift-pipelines-operator
- label:
operator.tekton.dev/release: devel
version: devel
name: tekton-operator-webhook
spec:
replicas: 1
selector:
matchLabels:
name: tekton-operator-webhook
strategy: {}
template:
metadata:
labels:
app: tekton-operator
name: tekton-operator-webhook
spec:
containers:
- env:
- name: SYSTEM_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: CONFIG_LOGGING_NAME
value: config-logging
- name: WEBHOOK_SERVICE_NAME
value: tekton-operator-webhook
- name: WEBHOOK_SECRET_NAME
value: tekton-operator-webhook-certs
- name: METRICS_DOMAIN
value: tekton.dev/operator
image: registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8@
name: tekton-operator-webhook
ports:
- containerPort: 8443
name: https-webhook
resources: {}
serviceAccountName: openshift-pipelines-operator
strategy: deployment
installModes:
- supported: false
type: OwnNamespace
- supported: false
type: SingleNamespace
- supported: false
type: MultiNamespace
- supported: true
type: AllNamespaces
keywords:
- tektoncd
- openshift
- build
- pipeline
links:
- name: Tekton Pipeline GitHub Repository
url: https://github.com/tektoncd/pipeline
- name: Tekton Operator GitHub Repository
url: https://github.com/tektoncd/operator
maintainers:
- email: [email protected]
name: Red Hat
maturity: alpha
provider:
name: Red Hat
relatedImages:
- image: registry.redhat.io/rhel8/buildah@sha256:6d2dcb651ba680cf4ec74331f8349dec43d071d420625a1703370acc8d984e9e
name: IMAGE_ADDONS_PARAM_BUILDER_IMAGE
- image: registry.redhat.io/openshift-serverless-1/client-kn-rhel8@sha256:37109f6de75dda750496f6668164d0dceaf9db5278e8c034708436f39de3276e
name: IMAGE_ADDONS_PARAM_KN_IMAGE
- image: registry.redhat.io/rhel8/skopeo@sha256:7fd65200b4847fc84fba0466519b87f915e28c0e9bc90d3022beecfebffd4af8
name: IMAGE_ADDONS_SKOPEO_COPY
- image: registry.redhat.io/source-to-image/source-to-image-rhel8@sha256:3696cf724ce7865626ae408d82fd87727c741e4d3eb3475c271ec6d56f0882a4
name: IMAGE_ADDONS_GENERATE
- image: registry.redhat.io/ubi9/ubi-minimal@sha256:14f14e03d68f7fd5f2b18a13478b6b127c341b346c86b6e0b886ed2b7573b8e0
name: IMAGE_ADDONS_MVN_SETTINGS
- image: registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator@
name: OPENSHIFT_PIPELINES_OPERATOR
- image: registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8@
name: IMAGE_PIPELINES_PROXY
- image: registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8@
name: IMAGE_PIPELINES_TEKTON_PIPELINES_CONTROLLER
- image: registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8@
name: IMAGE_PIPELINES_WEBHOOK
- image: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@
name: IMAGE_PIPELINES_ARG__ENTRYPOINT_IMAGE
- image: registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8@
name: IMAGE_PIPELINES_ARG__GIT_IMAGE
- image: registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8@
name: IMAGE_ADDONS_PARAM_GITINITIMAGE