File tree 3 files changed +78
-0
lines changed
3 files changed +78
-0
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : apps/v1
2
+ kind : DaemonSet
3
+ metadata :
4
+ name : smoke-ports-collector
5
+ spec :
6
+ template :
7
+ spec :
8
+ containers :
9
+ - name : otc-container
10
+ ports :
11
+ - containerPort : 14250
12
+ name : jaeger-grpc
13
+ protocol : TCP
14
+ - containerPort : 8888
15
+ name : metrics
16
+ protocol : TCP
17
+ - containerPort : 4317
18
+ name : otlp-grpc
19
+ protocol : TCP
20
+ hostPort : 4317
21
+ ---
22
+ apiVersion : v1
23
+ kind : Service
24
+ metadata :
25
+ name : smoke-ports-collector
26
+ spec :
27
+ ports :
28
+ - appProtocol : grpc
29
+ name : otlp-grpc
30
+ port : 4317
31
+ protocol : TCP
32
+ targetPort : 4317
33
+ - appProtocol : grpc
34
+ name : jaeger-grpc
35
+ port : 14250
36
+ protocol : TCP
37
+ targetPort : 14250
Original file line number Diff line number Diff line change
1
+ apiVersion : opentelemetry.io/v1beta1
2
+ kind : OpenTelemetryCollector
3
+ metadata :
4
+ name : smoke-ports
5
+ spec :
6
+ mode : daemonset
7
+ ports :
8
+ - appProtocol : grpc
9
+ name : otlp-grpc
10
+ port : 4317
11
+ protocol : TCP
12
+ targetPort : 4317
13
+ hostPort : 4317
14
+ config :
15
+ receivers :
16
+ jaeger :
17
+ protocols :
18
+ grpc : {}
19
+ processors :
20
+ exporters :
21
+ debug : {}
22
+ service :
23
+ pipelines :
24
+ traces :
25
+ receivers : [jaeger]
26
+ processors : []
27
+ exporters : [debug]
Original file line number Diff line number Diff line change
1
+ # yaml-language-server: $schema=https://raw.githubusercontent.com/kyverno/chainsaw/main/.schemas/json/test-chainsaw-v1alpha1.json
2
+ apiVersion : chainsaw.kyverno.io/v1alpha1
3
+ kind : Test
4
+ metadata :
5
+ creationTimestamp : null
6
+ name : smoke-ports
7
+ spec :
8
+ steps :
9
+ - name : step-00
10
+ try :
11
+ - apply :
12
+ file : 00-install.yaml
13
+ - assert :
14
+ file : 00-assert.yaml
You can’t perform that action at this time.
0 commit comments