File tree 7 files changed +34
-12
lines changed
7 files changed +34
-12
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,9 @@ metadata:
111
111
"trillian": {
112
112
"database": {
113
113
"create": true
114
- }
114
+ },
115
+ "trillianAddress": "trillian-address",
116
+ "trillienPort": "8091"
115
117
},
116
118
"tuf": {
117
119
"externalAccess": {
@@ -176,7 +178,7 @@ metadata:
176
178
}
177
179
]
178
180
capabilities : Basic Install
179
- createdAt : " 2024-02-19T13:25:38Z "
181
+ createdAt : " 2024-02-27T11:40:46Z "
180
182
operators.operatorframework.io/builder : operator-sdk-v1.32.0
181
183
operators.operatorframework.io/project_layout : go.kubebuilder.io/v3
182
184
name : rhtas-operator.v0.0.1
Original file line number Diff line number Diff line change 78
78
type : boolean
79
79
type : object
80
80
pvc :
81
+ default :
82
+ retain : true
83
+ size : 5Gi
81
84
description : PVC configuration
82
85
properties :
83
86
name :
94
97
storageClass :
95
98
description : Storage class for the PVC
96
99
type : string
100
+ required :
101
+ - retain
97
102
type : object
98
103
rekorSearchUI :
99
104
description : Rekor Search UI
Original file line number Diff line number Diff line change @@ -330,6 +330,9 @@ spec:
330
330
type : boolean
331
331
type : object
332
332
pvc :
333
+ default :
334
+ retain : true
335
+ size : 5Gi
333
336
description : PVC configuration
334
337
properties :
335
338
name :
@@ -346,6 +349,8 @@ spec:
346
349
storageClass :
347
350
description : Storage class for the PVC
348
351
type : string
352
+ required :
353
+ - retain
349
354
type : object
350
355
rekorSearchUI :
351
356
description : Rekor Search UI
@@ -402,11 +407,6 @@ spec:
402
407
description : TrillianSpec defines the desired state of Trillian
403
408
properties :
404
409
database :
405
- default :
406
- create : true
407
- pvc :
408
- retain : true
409
- size : 5Gi
410
410
description : Define your database connection
411
411
properties :
412
412
create :
@@ -444,6 +444,8 @@ spec:
444
444
storageClass :
445
445
description : Storage class for the PVC
446
446
type : string
447
+ required :
448
+ - retain
447
449
type : object
448
450
required :
449
451
- create
Original file line number Diff line number Diff line change 40
40
description : TrillianSpec defines the desired state of Trillian
41
41
properties :
42
42
database :
43
- default :
44
- create : true
45
- pvc :
46
- retain : true
47
- size : 5Gi
48
43
description : Define your database connection
49
44
properties :
50
45
create :
82
77
storageClass :
83
78
description : Storage class for the PVC
84
79
type : string
80
+ required :
81
+ - retain
85
82
type : object
86
83
required :
87
84
- create
@@ -198,6 +195,8 @@ spec:
198
195
storageClass :
199
196
description : Storage class for the PVC
200
197
type : string
198
+ required :
199
+ - retain
201
200
type : object
202
201
required :
203
202
- create
Original file line number Diff line number Diff line change @@ -196,6 +196,8 @@ spec:
196
196
storageClass :
197
197
description : Storage class for the PVC
198
198
type : string
199
+ required :
200
+ - retain
199
201
type : object
200
202
required :
201
203
- create
Original file line number Diff line number Diff line change 15
15
trillian :
16
16
database :
17
17
create : true
18
+ trillianAddress : " trillian-address"
19
+ trillienPort : " 8091"
18
20
fulcio :
19
21
externalAccess :
20
22
enabled : true
Original file line number Diff line number Diff line change
1
+ TUF_URL=$(oc -n tas-test get tuf securesign-sample -o jsonpath='{.status.url}')
2
+ FULCIO_URL=$(oc -n tas-test get fulcio securesign-sample -o jsonpath='{.status.url}')
3
+ REKOR_URL=$(oc -n tas-test get rekor securesign-sample -o jsonpath='{.status.url}')
4
+ OPENSHIFT_APPS_SUBDOMAIN=apps.$(oc get dns cluster -o jsonpath='{ .spec.baseDomain }')
5
+ OIDC_ISSUER=https://keycloak-keycloak-system.$OPENSHIFT_APPS_SUBDOMAIN/auth/realms/sigstore
6
+
7
+ rm -r ~/.sigstore
8
+ cosign initialize --mirror=$TUF_URL --root=$TUF_URL/root.json
9
+ cosign sign -y --fulcio-url=$FULCIO_URL --rekor-url=$REKOR_URL --oidc-issuer=$OIDC_ISSUER quay.io/tdalton/rhtastest:test3
10
+ cosign verify --rekor-url=$REKOR_URL --certificate-identity-regexp jdoe --certificate-oidc-issuer-regexp keycloak quay.io/tdalton/rhtastest:test3
You can’t perform that action at this time.
0 commit comments