-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathclient.go
1218 lines (1058 loc) · 39.9 KB
/
client.go
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
package util
import (
"bytes"
"context"
"crypto/rand"
"crypto/rsa"
"crypto/sha256"
"crypto/x509"
"crypto/x509/pkix"
"encoding/base64"
"encoding/pem"
"fmt"
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"regexp"
"runtime/debug"
"strings"
"time"
g "github.com/onsi/ginkgo/v2"
o "github.com/onsi/gomega"
"github.com/pborman/uuid"
prometheusv1 "github.com/prometheus/client_golang/api/prometheus/v1"
yaml "gopkg.in/yaml.v2"
kubeauthorizationv1 "k8s.io/api/authorization/v1"
certificatesv1 "k8s.io/api/certificates/v1"
corev1 "k8s.io/api/core/v1"
rbacv1 "k8s.io/api/rbac/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/apiserver/pkg/storage/names"
memory "k8s.io/client-go/discovery/cached"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/kubernetes"
clientcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
"k8s.io/client-go/rest"
"k8s.io/client-go/restmapper"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/tools/clientcmd"
watchtools "k8s.io/client-go/tools/watch"
"k8s.io/client-go/util/flowcontrol"
"k8s.io/client-go/util/retry"
"k8s.io/kubernetes/test/e2e/framework"
e2edebug "k8s.io/kubernetes/test/e2e/framework/debug"
admissionapi "k8s.io/pod-security-admission/api"
"github.com/openshift/api/annotations"
configv1 "github.com/openshift/api/config/v1"
oauthv1 "github.com/openshift/api/oauth/v1"
projectv1 "github.com/openshift/api/project/v1"
userv1 "github.com/openshift/api/user/v1"
appsv1client "github.com/openshift/client-go/apps/clientset/versioned"
authorizationv1client "github.com/openshift/client-go/authorization/clientset/versioned"
buildv1client "github.com/openshift/client-go/build/clientset/versioned"
configv1client "github.com/openshift/client-go/config/clientset/versioned"
imagev1client "github.com/openshift/client-go/image/clientset/versioned"
mcv1client "github.com/openshift/client-go/machineconfiguration/clientset/versioned"
oauthv1client "github.com/openshift/client-go/oauth/clientset/versioned"
operatorv1client "github.com/openshift/client-go/operator/clientset/versioned"
projectv1client "github.com/openshift/client-go/project/clientset/versioned"
quotav1client "github.com/openshift/client-go/quota/clientset/versioned"
routev1client "github.com/openshift/client-go/route/clientset/versioned"
securityv1client "github.com/openshift/client-go/security/clientset/versioned"
templatev1client "github.com/openshift/client-go/template/clientset/versioned"
userv1client "github.com/openshift/client-go/user/clientset/versioned"
"github.com/openshift/library-go/test/library/metrics"
apiextensionsclient "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
)
// CLI provides function to call the OpenShift CLI and Kubernetes and OpenShift
// clients.
type CLI struct {
execPath string
verb string
configPath string
adminConfigPath string
// directory with static manifests, each file is expected to be a single manifest
// manifest files can be stored under directory tree
staticConfigManifestDir string
token string
username string
globalArgs []string
commandArgs []string
finalArgs []string
namespacesToDelete []string
stdin *bytes.Buffer
stdout io.Writer
stderr io.Writer
verbose bool
withoutNamespace bool
withManagedNamespace bool
kubeFramework *framework.Framework
// read from a static manifest directory (set through STATIC_CONFIG_MANIFEST_DIR env)
configObjects []runtime.Object
resourcesToDelete []resourceRef
}
type resourceRef struct {
Resource schema.GroupVersionResource
Namespace string
Name string
}
// NewCLIWithFramework initializes the CLI using the provided Kube
// framework. It can be called inside of a Ginkgo .It() function.
func NewCLIWithFramework(kubeFramework *framework.Framework) *CLI {
cli := &CLI{
kubeFramework: kubeFramework,
username: "admin",
execPath: "oc",
adminConfigPath: KubeConfigPath(),
staticConfigManifestDir: StaticConfigManifestDir(),
}
// Called only once (assumed the objects will never get modified)
// TODO: run in every BeforeEach
cli.setupStaticConfigsFromManifests()
return cli
}
// NewCLIWithPodSecurityLevel initializes the CLI the same way as `NewCLI()`
// but the given pod security level is applied to the created e2e test namespace.
func NewCLIWithPodSecurityLevel(project string, level admissionapi.Level) *CLI {
cli := NewCLI(project)
cli.kubeFramework.NamespacePodSecurityLevel = level
return cli
}
// NewCLI initializes the CLI and Kube framework helpers with the provided
// namespace. Should be called outside of a Ginkgo .It() function.
// This will apply the `restricted` pod security level to the given underlying namespace.
func NewCLI(project string) *CLI {
cli := NewCLIWithoutNamespace(project)
cli.withoutNamespace = false
// create our own project
g.BeforeEach(func() { cli.SetupProject() })
return cli
}
// NewCLIWithoutNamespace initializes the CLI and Kube framework helpers
// without a namespace. Should be called outside of a Ginkgo .It()
// function. Use SetupProject() to create a project for this namespace.
func NewCLIWithoutNamespace(project string) *CLI {
cli := &CLI{
kubeFramework: &framework.Framework{
SkipNamespaceCreation: true,
BaseName: project,
Options: framework.Options{
ClientQPS: 20,
ClientBurst: 50,
},
Timeouts: framework.NewTimeoutContext(),
},
username: "admin",
execPath: "oc",
adminConfigPath: KubeConfigPath(),
staticConfigManifestDir: StaticConfigManifestDir(),
withoutNamespace: true,
}
g.BeforeEach(cli.kubeFramework.BeforeEach)
// Called only once (assumed the objects will never get modified)
cli.setupStaticConfigsFromManifests()
// we can't use k8s initialization method to inject these into framework.NewFrameworkExtensions
// because we need to have an instance of CLI, so we're rely on the less optimal ginkgo.AfterEach
// in case where this method fails, framework cleans up the entire namespace so we should be
// safe on that front, still.
g.AfterEach(cli.TeardownProject)
return cli
}
// NewCLIForMonitorTest initializes the CLI and Kube framework helpers
// without a namespace. Should be called outside of a Ginkgo .It()
// function.
func NewCLIForMonitorTest(project string) *CLI {
cli := &CLI{
kubeFramework: &framework.Framework{
SkipNamespaceCreation: true,
BaseName: project,
Options: framework.Options{
ClientQPS: 20,
ClientBurst: 50,
},
Timeouts: framework.NewTimeoutContext(),
},
username: "admin",
execPath: "oc",
adminConfigPath: KubeConfigPath(),
staticConfigManifestDir: StaticConfigManifestDir(),
withoutNamespace: true,
}
// Called only once (assumed the objects will never get modified)
cli.setupStaticConfigsFromManifests()
return cli
}
// NewHypershiftManagementCLI returns a CLI that interacts with the Hypershift management cluster.
// Contrary to a normal CLI it does not perform any cleanup, and it must not be used for any mutating
// operations. Also, contrary to a normal CLI it must be constructed inside an `It` block. This is
// because retrieval of hypershift management cluster config can fail, but assertions are only
// allowed inside an `It` block. `AfterEach` and `BeforeEach` are not allowed there though.
func NewHypershiftManagementCLI(project string) *CLI {
kubeconfig, _, err := GetHypershiftManagementClusterConfigAndNamespace()
o.Expect(err).NotTo(o.HaveOccurred())
return &CLI{
kubeFramework: &framework.Framework{
SkipNamespaceCreation: true,
BaseName: project,
Options: framework.Options{
ClientQPS: 20,
ClientBurst: 50,
},
Timeouts: framework.NewTimeoutContext(),
},
username: "admin",
execPath: "oc",
adminConfigPath: kubeconfig,
withoutNamespace: true,
}
}
// KubeFramework returns Kubernetes framework which contains helper functions
// specific for Kubernetes resources
func (c *CLI) KubeFramework() *framework.Framework {
return c.kubeFramework
}
// Username returns the name of currently logged user. If there is no user assigned
// for the current session, it returns 'admin'.
func (c *CLI) Username() string {
return c.username
}
// AsAdmin changes current config file path to the admin config.
func (c *CLI) AsAdmin() *CLI {
nc := *c
nc.configPath = c.adminConfigPath
return &nc
}
// ChangeUser changes the user used by the current CLI session.
func (c *CLI) ChangeUser(name string) *CLI {
requiresTestStart()
clientConfig := c.GetClientConfigForUser(name)
kubeConfig, err := createConfig(c.Namespace(), clientConfig)
if err != nil {
FatalErr(err)
}
f, err := ioutil.TempFile("", "configfile")
if err != nil {
FatalErr(err)
}
c.configPath = f.Name()
err = clientcmd.WriteToFile(*kubeConfig, c.configPath)
if err != nil {
FatalErr(err)
}
c.username = name
framework.Logf("configPath is now %q", c.configPath)
return c
}
// SetNamespace sets a new namespace
func (c *CLI) SetNamespace(ns string) *CLI {
c.kubeFramework.Namespace = &corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: ns,
},
}
return c
}
// SetManagedNamespace appends the managed workload partitioning annotations to namespace on creation
func (c *CLI) SetManagedNamespace() *CLI {
c.withManagedNamespace = true
return c
}
// WithoutNamespace instructs the command should be invoked without adding --namespace parameter
func (c CLI) WithoutNamespace() *CLI {
c.withoutNamespace = true
return &c
}
// WithToken instructs the command should be invoked with --token rather than --kubeconfig flag
func (c CLI) WithToken(token string) *CLI {
c.configPath = ""
c.token = token
return &c
}
// SetupProject creates a new project and assign a random user to the project.
// All resources will be then created within this project.
// Returns the name of the new project.
func (c *CLI) SetupProject() string {
exist, err := DoesApiResourceExist(c.AdminConfig(), "projects", "project.openshift.io")
o.Expect(err).ToNot(o.HaveOccurred())
if exist {
return c.setupProject()
}
return c.setupNamespace()
}
func (c *CLI) setupProject() string {
requiresTestStart()
newNamespace := names.SimpleNameGenerator.GenerateName(fmt.Sprintf("e2e-test-%s-", c.kubeFramework.BaseName))
c.SetNamespace(newNamespace).ChangeUser(fmt.Sprintf("%s-user", newNamespace))
framework.Logf("The user is now %q", c.Username())
framework.Logf("Creating project %q", newNamespace)
_, err := c.ProjectClient().ProjectV1().ProjectRequests().Create(context.Background(), &projectv1.ProjectRequest{
ObjectMeta: metav1.ObjectMeta{Name: newNamespace},
}, metav1.CreateOptions{})
o.Expect(err).NotTo(o.HaveOccurred())
c.kubeFramework.AddNamespacesToDelete(&corev1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: newNamespace}})
framework.Logf("Waiting on permissions in project %q ...", newNamespace)
err = WaitForSelfSAR(1*time.Second, 60*time.Second, c.KubeClient(), kubeauthorizationv1.SelfSubjectAccessReviewSpec{
ResourceAttributes: &kubeauthorizationv1.ResourceAttributes{
Namespace: newNamespace,
Verb: "create",
Group: "",
Resource: "pods",
},
})
o.Expect(err).NotTo(o.HaveOccurred())
err = c.setupNamespacePodSecurity(newNamespace)
o.Expect(err).NotTo(o.HaveOccurred())
err = c.setupNamespaceManagedAnnotation(newNamespace)
o.Expect(err).NotTo(o.HaveOccurred())
// Wait for SAs and default dockercfg Secret to be injected
// TODO: it would be nice to have a shared list but it is defined in at least 3 place,
// TODO: some of them not even using the constants
DefaultServiceAccounts := []string{
"default",
"builder",
}
defaultRoleBindings := []string{"system:image-pullers", "system:image-builders"}
dcEnabled, err := IsCapabilityEnabled(c, configv1.ClusterVersionCapabilityDeploymentConfig)
o.Expect(err).NotTo(o.HaveOccurred())
if dcEnabled {
framework.Logf("%v capability is enabled, adding 'deployer' SA to the list of default SAs", configv1.ClusterVersionCapabilityDeploymentConfig)
DefaultServiceAccounts = append(DefaultServiceAccounts, "deployer")
defaultRoleBindings = append(defaultRoleBindings, "system:deployers")
}
// If image registry is not enabled set default service account and default role bindings to empty slice,
// the SA will not contain the docker secret and the role binding is not expected to be present.
imageRegistryEnabled, err := IsCapabilityEnabled(c, configv1.ClusterVersionCapabilityImageRegistry)
o.Expect(err).NotTo(o.HaveOccurred())
if !imageRegistryEnabled {
DefaultServiceAccounts = []string{}
defaultRoleBindings = []string{}
}
for _, sa := range DefaultServiceAccounts {
framework.Logf("Waiting for ServiceAccount %q to be provisioned...", sa)
err = WaitForServiceAccountWithSecret(c.AdminConfigClient().ConfigV1().ClusterVersions(), c.KubeClient().CoreV1().ServiceAccounts(newNamespace), sa)
o.Expect(err).NotTo(o.HaveOccurred())
}
var ctx context.Context
cancel := func() {}
defer func() { cancel() }()
// Wait for default role bindings for those SAs
for _, name := range defaultRoleBindings {
framework.Logf("Waiting for RoleBinding %q to be provisioned...", name)
ctx, cancel = watchtools.ContextWithOptionalTimeout(context.Background(), 3*time.Minute)
fieldSelector := fields.OneTermEqualSelector("metadata.name", name).String()
lw := &cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
options.FieldSelector = fieldSelector
return c.KubeClient().RbacV1().RoleBindings(newNamespace).List(context.Background(), options)
},
WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
options.FieldSelector = fieldSelector
return c.KubeClient().RbacV1().RoleBindings(newNamespace).Watch(context.Background(), options)
},
}
_, err := watchtools.UntilWithSync(ctx, lw, &rbacv1.RoleBinding{}, nil, func(event watch.Event) (b bool, e error) {
switch t := event.Type; t {
case watch.Added, watch.Modified:
return true, nil
case watch.Deleted:
return true, fmt.Errorf("object has been deleted")
default:
return true, fmt.Errorf("internal error: unexpected event %#v", e)
}
})
o.Expect(err).NotTo(o.HaveOccurred())
}
WaitForNamespaceSCCAnnotations(c.KubeClient().CoreV1(), newNamespace)
framework.Logf("Project %q has been fully provisioned.", newNamespace)
return newNamespace
}
func (c *CLI) setupNamespace() string {
requiresTestStart()
newNamespace := names.SimpleNameGenerator.GenerateName(fmt.Sprintf("e2e-test-%s-", c.kubeFramework.BaseName))
username := fmt.Sprintf("%s-user", newNamespace)
serviceAccountName := "default"
c.SetNamespace(newNamespace)
nsObject := &corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: newNamespace,
Annotations: map[string]string{
annotations.OpenShiftDescription: username,
annotations.OpenShiftDisplayName: newNamespace,
"openshift.io/requester": username,
},
},
}
framework.Logf("Creating namespace %q", newNamespace)
_, err := c.AdminKubeClient().CoreV1().Namespaces().Create(context.Background(), nsObject, metav1.CreateOptions{})
o.Expect(err).NotTo(o.HaveOccurred())
c.kubeFramework.AddNamespacesToDelete(nsObject)
framework.Logf("Waiting for ServiceAccount %q to be provisioned...", serviceAccountName)
err = WaitForServiceAccount(c.AdminKubeClient().CoreV1().ServiceAccounts(newNamespace), serviceAccountName)
o.Expect(err).NotTo(o.HaveOccurred())
framework.Logf("Configuring kubeconfig with user %q certificates...", username)
c.ChangeUser(username)
framework.Logf("Waiting for RoleBinding %q to be provisioned...", username)
err = c.setupRoleInNamespace(username)
o.Expect(err).NotTo(o.HaveOccurred())
framework.Logf("Waiting on permissions in namespace %q ...", newNamespace)
err = WaitForSelfSAR(1*time.Second, 60*time.Second, c.KubeClient(), kubeauthorizationv1.SelfSubjectAccessReviewSpec{
ResourceAttributes: &kubeauthorizationv1.ResourceAttributes{
Namespace: newNamespace,
Verb: "create",
Group: "",
Resource: "pods",
},
})
o.Expect(err).NotTo(o.HaveOccurred())
err = c.setupNamespacePodSecurity(newNamespace)
o.Expect(err).NotTo(o.HaveOccurred())
err = c.setupNamespaceManagedAnnotation(newNamespace)
o.Expect(err).NotTo(o.HaveOccurred())
WaitForNamespaceSCCAnnotations(c.KubeClient().CoreV1(), newNamespace)
framework.Logf("Namespace %q has been fully provisioned.", newNamespace)
return newNamespace
}
func (c *CLI) setupRoleInNamespace(username string) error {
roleBinding := &rbacv1.RoleBinding{
ObjectMeta: metav1.ObjectMeta{
Name: username,
},
RoleRef: rbacv1.RoleRef{
APIGroup: rbacv1.SchemeGroupVersion.Group,
Kind: "ClusterRole",
Name: "admin",
},
Subjects: []rbacv1.Subject{
{
Kind: "User",
Name: username,
Namespace: c.Namespace(),
},
},
}
_, err := c.AdminKubeClient().RbacV1().RoleBindings(c.Namespace()).Create(context.Background(), roleBinding, metav1.CreateOptions{})
if err != nil {
return err
}
return nil
}
func (c *CLI) setupUserConfig(username string) (*rest.Config, error) {
privateKey, err := rsa.GenerateKey(rand.Reader, 2048)
if err != nil {
return nil, err
}
privateKeyPem := pem.EncodeToMemory(&pem.Block{
Type: "RSA PRIVATE KEY",
Bytes: x509.MarshalPKCS1PrivateKey(privateKey),
})
subj := pkix.Name{
CommonName: username,
Organization: []string{"system:authenticated", "system:authenticated:oauth"},
}
template := x509.CertificateRequest{
Subject: subj,
SignatureAlgorithm: x509.SHA256WithRSA,
}
crBytes, err := x509.CreateCertificateRequest(rand.Reader, &template, privateKey)
if err != nil {
return nil, err
}
crPem := pem.EncodeToMemory(&pem.Block{
Type: "CERTIFICATE REQUEST",
Bytes: crBytes,
})
req := certificatesv1.CertificateSigningRequest{
ObjectMeta: metav1.ObjectMeta{
Name: username,
},
Spec: certificatesv1.CertificateSigningRequestSpec{
Request: crPem,
SignerName: "kubernetes.io/kube-apiserver-client",
Usages: []certificatesv1.KeyUsage{
certificatesv1.UsageClientAuth,
},
},
}
csr, err := c.AdminKubeClient().CertificatesV1().CertificateSigningRequests().Create(context.Background(), &req, metav1.CreateOptions{})
if err != nil {
return nil, err
}
c.AddExplicitResourceToDelete(certificatesv1.SchemeGroupVersion.WithResource("certificatesigningrequests"), "", username)
csr.Status.Conditions = append(csr.Status.Conditions, certificatesv1.CertificateSigningRequestCondition{
Type: certificatesv1.CertificateApproved,
LastUpdateTime: metav1.Now(),
Status: corev1.ConditionTrue,
})
_, err = c.AdminKubeClient().CertificatesV1().CertificateSigningRequests().UpdateApproval(context.Background(), username, csr, metav1.UpdateOptions{})
if err != nil {
return nil, err
}
pollErr := wait.PollImmediate(time.Second, time.Minute, func() (bool, error) {
csr, err = c.AdminKubeClient().CertificatesV1().CertificateSigningRequests().Get(context.Background(), username, metav1.GetOptions{})
if err != nil {
return false, err
}
if len(csr.Status.Certificate) == 0 {
return false, nil
}
return true, nil
})
if pollErr != nil {
return nil, pollErr
}
userClientConfig := rest.AnonymousClientConfig(turnOffRateLimiting(rest.CopyConfig(c.AdminConfig())))
userClientConfig.TLSClientConfig.CertData = csr.Status.Certificate
userClientConfig.TLSClientConfig.KeyData = privateKeyPem
return userClientConfig, nil
}
func (c *CLI) setupNamespaceManagedAnnotation(ns string) error {
if !c.withManagedNamespace {
return nil
}
return retry.RetryOnConflict(retry.DefaultRetry, func() error {
ns, err := c.AdminKubeClient().CoreV1().Namespaces().Get(context.Background(), ns, metav1.GetOptions{})
if err != nil {
return err
}
ns.Annotations["workload.openshift.io/allowed"] = "management"
_, err = c.AdminKubeClient().CoreV1().Namespaces().Update(context.Background(), ns, metav1.UpdateOptions{})
return err
})
}
func (c *CLI) setupNamespacePodSecurity(ns string) error {
return retry.RetryOnConflict(retry.DefaultRetry, func() error {
// once permissions are settled the underlying namespace must have been created.
ns, err := c.AdminKubeClient().CoreV1().Namespaces().Get(context.Background(), ns, metav1.GetOptions{})
if err != nil {
return err
}
if len(c.kubeFramework.NamespacePodSecurityLevel) == 0 {
c.kubeFramework.NamespacePodSecurityLevel = admissionapi.LevelRestricted
}
if ns.Labels == nil {
ns.Labels = make(map[string]string)
}
ns.Labels[admissionapi.EnforceLevelLabel] = string(c.kubeFramework.NamespacePodSecurityLevel)
// In contrast to upstream, OpenShift sets a global default on warn and audit pod security levels.
// Since this would cause unwanted audit log and warning entries, we are setting the same level as for enforcement.
ns.Labels[admissionapi.WarnLevelLabel] = string(c.kubeFramework.NamespacePodSecurityLevel)
ns.Labels[admissionapi.AuditLevelLabel] = string(c.kubeFramework.NamespacePodSecurityLevel)
ns.Labels["security.openshift.io/scc.podSecurityLabelSync"] = "false"
_, err = c.AdminKubeClient().CoreV1().Namespaces().Update(context.Background(), ns, metav1.UpdateOptions{})
return err
})
}
// TeardownProject removes projects created by this test.
func (c *CLI) TeardownProject() {
if len(c.Namespace()) > 0 && g.CurrentSpecReport().Failed() && framework.TestContext.DumpLogsOnFailure {
e2edebug.DumpAllNamespaceInfo(context.TODO(), c.kubeFramework.ClientSet, c.Namespace())
}
if len(c.configPath) > 0 {
os.Remove(c.configPath)
}
dynamicClient := c.AdminDynamicClient()
for _, resource := range c.resourcesToDelete {
err := dynamicClient.Resource(resource.Resource).Namespace(resource.Namespace).Delete(context.Background(), resource.Name, metav1.DeleteOptions{})
framework.Logf("Deleted %v, err: %v", resource, err)
}
}
// Verbose turns on printing verbose messages when executing OpenShift commands
func (c *CLI) Verbose() *CLI {
c.verbose = true
return c
}
func (c *CLI) RESTMapper() meta.RESTMapper {
ret := restmapper.NewDeferredDiscoveryRESTMapper(memory.NewMemCacheClient(c.KubeClient().Discovery()))
ret.Reset()
return ret
}
func (c *CLI) setupStaticConfigsFromManifests() {
if len(c.staticConfigManifestDir) > 0 {
err, objects := collectConfigManifestsFromDir(c.staticConfigManifestDir)
if err != nil {
panic(err)
}
c.configObjects = objects
}
}
func (c *CLI) AppsClient() appsv1client.Interface {
return appsv1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) AuthorizationClient() authorizationv1client.Interface {
return authorizationv1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) BuildClient() buildv1client.Interface {
return buildv1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) ImageClient() imagev1client.Interface {
return imagev1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) ProjectClient() projectv1client.Interface {
return projectv1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) QuotaClient() quotav1client.Interface {
return quotav1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) RouteClient() routev1client.Interface {
return routev1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) TemplateClient() templatev1client.Interface {
return templatev1client.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) AdminApiextensionsClient() apiextensionsclient.Interface {
return apiextensionsclient.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminAppsClient() appsv1client.Interface {
return appsv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminAuthorizationClient() authorizationv1client.Interface {
return authorizationv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminBuildClient() buildv1client.Interface {
return buildv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminConfigClient() configv1client.Interface {
return NewConfigClientShim(
configv1client.NewForConfigOrDie(c.AdminConfig()),
c.configObjects,
)
}
func (c *CLI) AdminImageClient() imagev1client.Interface {
return imagev1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminOAuthClient() oauthv1client.Interface {
return oauthv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminOperatorClient() operatorv1client.Interface {
return operatorv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminProjectClient() projectv1client.Interface {
return projectv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminQuotaClient() quotav1client.Interface {
return quotav1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminRouteClient() routev1client.Interface {
return routev1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminUserClient() userv1client.Interface {
return userv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminSecurityClient() securityv1client.Interface {
return securityv1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminTemplateClient() templatev1client.Interface {
return templatev1client.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) MachineConfigurationClient() mcv1client.Interface {
return mcv1client.NewForConfigOrDie(c.AdminConfig())
}
// KubeClient provides a Kubernetes client for the current namespace
func (c *CLI) KubeClient() kubernetes.Interface {
return kubernetes.NewForConfigOrDie(c.UserConfig())
}
func (c *CLI) DynamicClient() dynamic.Interface {
return dynamic.NewForConfigOrDie(c.UserConfig())
}
// AdminKubeClient provides a Kubernetes client for the cluster admin user.
func (c *CLI) AdminKubeClient() kubernetes.Interface {
return kubernetes.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) AdminDynamicClient() dynamic.Interface {
return dynamic.NewForConfigOrDie(c.AdminConfig())
}
func (c *CLI) NewPrometheusClient(ctx context.Context) prometheusv1.API {
// TODO update library-go and use the client helpers
kubeClient, err := kubernetes.NewForConfig(c.AdminConfig())
if err != nil {
panic(fmt.Errorf("failed to create Kubernetes client: %w", err))
}
routeClient, err := routev1client.NewForConfig(c.AdminConfig())
if err != nil {
panic(fmt.Errorf("failed to create Route client: %w", err))
}
var (
lastErr error
prometheusClient prometheusv1.API
)
err = wait.PollUntilContextTimeout(ctx, time.Second, 10*time.Second, true, func(ctx context.Context) (bool, error) {
prometheusClient, err = metrics.NewPrometheusClient(ctx, kubeClient, routeClient)
if err != nil {
if ctx.Err() == nil {
lastErr = err
}
return false, nil
}
return true, nil
})
if err != nil {
panic(fmt.Errorf("failed to create Prometheus client: %w: %w", err, lastErr))
}
return prometheusClient
}
func (c *CLI) UserConfig() *rest.Config {
clientConfig, err := GetClientConfig(c.configPath)
if err != nil {
FatalErr(err)
}
return clientConfig
}
func (c *CLI) AdminConfig() *rest.Config {
clientConfig, err := GetClientConfig(c.adminConfigPath)
if err != nil {
FatalErr(err)
}
return clientConfig
}
// Namespace returns the name of the namespace used in the current test case.
// If the namespace is not set, an empty string is returned.
func (c *CLI) Namespace() string {
if c.kubeFramework.Namespace == nil {
return ""
}
return c.kubeFramework.Namespace.Name
}
// setOutput allows to override the default command output
func (c *CLI) setOutput(out io.Writer) *CLI {
c.stdout = out
return c
}
// Run executes given OpenShift CLI command verb (iow. "oc <verb>").
// This function also override the default 'stdout' to redirect all output
// to a buffer and prepare the global flags such as namespace and config path.
func (c *CLI) Run(commands ...string) *CLI {
requiresTestStart()
in, out, errout := &bytes.Buffer{}, &bytes.Buffer{}, &bytes.Buffer{}
nc := &CLI{
execPath: c.execPath,
verb: commands[0],
kubeFramework: c.KubeFramework(),
adminConfigPath: c.adminConfigPath,
configPath: c.configPath,
username: c.username,
globalArgs: commands,
}
if len(c.configPath) > 0 {
nc.globalArgs = append([]string{fmt.Sprintf("--kubeconfig=%s", c.configPath)}, nc.globalArgs...)
}
if len(c.configPath) == 0 && len(c.token) > 0 {
nc.globalArgs = append([]string{fmt.Sprintf("--token=%s", c.token)}, nc.globalArgs...)
}
if !c.withoutNamespace {
nc.globalArgs = append([]string{fmt.Sprintf("--namespace=%s", c.Namespace())}, nc.globalArgs...)
}
nc.stdin, nc.stdout, nc.stderr = in, out, errout
return nc.setOutput(c.stdout)
}
// Executes with the kubeconfig specified from the environment
func (c *CLI) RunInMonitorTest(commands ...string) *CLI {
in, out, errout := &bytes.Buffer{}, &bytes.Buffer{}, &bytes.Buffer{}
nc := &CLI{
execPath: c.execPath,
verb: commands[0],
kubeFramework: c.KubeFramework(),
adminConfigPath: c.adminConfigPath,
configPath: c.configPath,
username: c.username,
globalArgs: commands,
}
nc.stdin, nc.stdout, nc.stderr = in, out, errout
return nc.setOutput(c.stdout)
}
// InputString adds expected input to the command
func (c *CLI) InputString(input string) *CLI {
c.stdin.WriteString(input)
return c
}
// Args sets the additional arguments for the OpenShift CLI command
func (c *CLI) Args(args ...string) *CLI {
c.commandArgs = args
return c
}
func (c *CLI) printCmd() string {
return strings.Join(c.finalArgs, " ")
}
type ExitError struct {
Cmd string
StdErr string
*exec.ExitError
}
// Output executes the command and returns stdout/stderr combined into one string
func (c *CLI) Output() (string, error) {
var buff bytes.Buffer
_, _, err := c.outputs(&buff, &buff)
return strings.TrimSpace(string(buff.Bytes())), err
}
// Outputs executes the command and returns the stdout/stderr output as separate strings
func (c *CLI) Outputs() (string, string, error) {
var stdOutBuff, stdErrBuff bytes.Buffer
return c.outputs(&stdOutBuff, &stdErrBuff)
}
// Background executes the command in the background and returns the Cmd object
// which may be killed later via cmd.Process.Kill(). It also returns buffers
// holding the stdout & stderr of the command, which may be read from only after
// calling cmd.Wait().
func (c *CLI) Background() (*exec.Cmd, *bytes.Buffer, *bytes.Buffer, error) {
var stdOutBuff, stdErrBuff bytes.Buffer
cmd, err := c.start(&stdOutBuff, &stdErrBuff)
return cmd, &stdOutBuff, &stdErrBuff, err
}
func (c *CLI) start(stdOutBuff, stdErrBuff *bytes.Buffer) (*exec.Cmd, error) {
c.finalArgs = append(c.globalArgs, c.commandArgs...)
if c.verbose {
fmt.Printf("DEBUG: oc %s\n", c.printCmd())
}
cmd := exec.Command(c.execPath, c.finalArgs...)
cmd.Stdin = c.stdin
// Redact any bearer token information from the log.
framework.Logf("Running '%s %s'", c.execPath, redactBearerToken(c.finalArgs))
cmd.Stdout = stdOutBuff
cmd.Stderr = stdErrBuff
err := cmd.Start()
return cmd, err
}
func redactBearerToken(finalArgs []string) string {
args := strings.Join(finalArgs, " ")
if strings.Contains(args, "Authorization: Bearer") {
// redact bearer token
re := regexp.MustCompile(`Authorization:\s+Bearer.*\s+`)
args = re.ReplaceAllString(args, "Authorization: Bearer <redacted> ")
}
return args
}
// getStartingIndexForLastN calculates a byte offset in a byte slice such that when using
// that offset, we get the last N (size) bytes.
func getStartingIndexForLastN(byteString []byte, size int) int {
len := len(byteString)
if len < size {
// byte slice is less than size, so use all of it.
return 0
}
return len - size
}
func (c *CLI) outputs(stdOutBuff, stdErrBuff *bytes.Buffer) (string, string, error) {
cmd, err := c.start(stdOutBuff, stdErrBuff)
if err != nil {
return "", "", err
}
err = cmd.Wait()
stdOutBytes := stdOutBuff.Bytes()
stdErrBytes := stdErrBuff.Bytes()
stdOut := strings.TrimSpace(string(stdOutBytes))
stdErr := strings.TrimSpace(string(stdErrBytes))
switch err.(type) {
case nil:
c.stdout = bytes.NewBuffer(stdOutBytes)
c.stderr = bytes.NewBuffer(stdErrBytes)
return stdOut, stdErr, nil
case *exec.ExitError:
framework.Logf("Error running %v:\nStdOut>\n%s\nStdErr>\n%s\n", cmd, stdOut, stdErr)
wrappedErr := fmt.Errorf("Error running %v:\nStdOut>\n%s\nStdErr>\n%s\n%w\n", cmd, stdOut[getStartingIndexForLastN(stdOutBytes, 4096):], stdErr[getStartingIndexForLastN(stdErrBytes, 4096):], err)
return stdOut, stdErr, wrappedErr
default:
FatalErr(fmt.Errorf("unable to execute %q: %v", c.execPath, err))
// unreachable code
return "", "", nil
}
}
// OutputToFile executes the command and store output to a file
func (c *CLI) OutputToFile(filename string) (string, error) {