@@ -434,7 +434,7 @@ it to the builder service account, and then your `BuildConfig`.
434
434
To create a secret from a *_.gitconfig_* file:
435
435
436
436
----
437
- $ oc secrets new mysecret .gitconfig= path/to/.gitconfig
437
+ $ oc create secret generic <secret_name> --from-file=< path/to/.gitconfig>
438
438
----
439
439
440
440
[NOTE]
@@ -458,16 +458,19 @@ Create the `secret` first before using the user name and password to access the
458
458
private repository:
459
459
460
460
----
461
- $ oc secrets new-basicauth <secret_name> \
462
- --username=<user_name> \
463
- --password=<password>
461
+ $ oc create secret generic <secret_name> \
462
+ --from-literal=username=<user_name> \
463
+ --from-literal=password=<password> \
464
+ --type=kubernetes.io/basic-auth
464
465
----
465
466
466
467
To create a basic authentication secret with a token:
467
468
468
469
----
469
- $ oc secrets new-basicauth <secret_name> \
470
- --password=<token>
470
+ $ oc create secret generic <secret_name> \
471
+ --from-literal=password=<token> \
472
+ --type=kubernetes.io/basic-auth
473
+
471
474
----
472
475
473
476
[[source-secrets-ssh-key-authentication]]
@@ -498,8 +501,9 @@ Before using the SSH key to access the private repository, create the secret
498
501
first:
499
502
500
503
----
501
- $ oc secrets new-sshauth sshsecret \
502
- --ssh-privatekey=$HOME/.ssh/id_rsa
504
+ $ oc create secret generic <secret_name> \
505
+ --from-file=ssh-privatekey=<path/to/ssh/private/key> \
506
+ --type=kubernetes.io/ssh-auth
503
507
----
504
508
505
509
[[source-secrets-trusted-certificate-authorities]]
@@ -519,7 +523,7 @@ significantly more secure than disabling Git's SSL verification, which accepts
519
523
any TLS certificate that is presented.
520
524
+
521
525
----
522
- $ oc secrets new mycert ca.crt=</path/to/file> <1>
526
+ $ oc create secret generic mycert --from-file= ca.crt=</path/to/file> <1>
523
527
----
524
528
<1> The key name *_ca.crt_* must be used.
525
529
@@ -540,45 +544,49 @@ creating source clone secrets for your specific needs.
540
544
.. To create an SSH-based authentication secret with a *_.gitconfig_* file:
541
545
+
542
546
----
543
- $ oc secrets new-sshauth sshsecret \
544
- --ssh-privatekey=$HOME/.ssh/id_rsa \
545
- --gitconfig=</path/to/file>
547
+ $ oc create secret generic <secret_name> \
548
+ --from-file=ssh-privatekey=<path/to/ssh/private/key> \
549
+ --from-file=<path/to/.gitconfig> \
550
+ --type=kubernetes.io/ssh-auth
546
551
----
547
552
548
553
.. To create a secret that combines a *_.gitconfig_* file and CA certificate:
549
554
+
550
555
----
551
- $ oc secrets new mysecret \
552
- ca.crt=path/to/certificate \
553
- .gitconfig= path/to/.gitconfig
556
+ $ oc create secret generic <secret_name> \
557
+ --from-file= ca.crt=< path/to/certificate> \
558
+ --from-file=< path/to/.gitconfig>
554
559
----
555
560
556
561
.. To create a basic authentication secret with a CA certificate file:
557
562
+
558
563
----
559
- $ oc secrets new-basicauth <secret_name> \
560
- --username=<user_name> \
561
- --password=<password> \
562
- --ca-cert=</path/to/file>
564
+ $ oc create secret generic <secret_name> \
565
+ --from-literal=username=<user_name> \
566
+ --from-literal=password=<password> \
567
+ --from-file=ca-cert=</path/to/file> \
568
+ --type=kubernetes.io/basic-auth
563
569
----
564
570
565
571
.. To create a basic authentication secret with a *_.gitconfig_* file:
566
572
+
567
573
----
568
- $ oc secrets new-basicauth <secret_name> \
569
- --username=<user_name> \
570
- --password=<password> \
571
- --gitconfig=</path/to/file>
574
+ $ oc create secret generic <secret_name> \
575
+ --from-literal=username=<user_name> \
576
+ --from-literal=password=<password> \
577
+ --from-file=</path/to/.gitconfig> \
578
+ --type=kubernetes.io/basic-auth
572
579
----
573
580
574
581
.. To create a basic authentication secret with a *_.gitconfig_* file and CA certificate file:
575
582
+
576
583
----
577
- $ oc secrets new-basicauth <secret_name> \
578
- --username=<user_name> \
579
- --password=<password> \
580
- --gitconfig=</path/to/file> \
581
- --ca-cert=</path/to/file>
584
+ $ oc create secret generic <secret_name> \
585
+ --from-literal=username=<user_name> \
586
+ --from-literal=password=<password> \
587
+ --from-file=</path/to/.gitconfig> \
588
+ --from-file=ca-cert=</path/to/file> \
589
+ --type=kubernetes.io/basic-auth
582
590
----
583
591
584
592
@@ -681,7 +689,8 @@ To add an input secret to an existing `BuildConfig`:
681
689
. Create the secret, if it does not exist:
682
690
+
683
691
----
684
- $ oc secrets new secret-npmrc .npmrc=~/.npmrc
692
+ $ oc create secret generic secret-npmrc \
693
+ --from-file=.npmrc=<path/to/.npmrc>
685
694
----
686
695
+
687
696
This creates a new secret named *_secret-npmrc_*, which contains the base64
@@ -929,7 +938,9 @@ be used to store configuration and passwords.
929
938
. Create the secret from your local *_.docker/config.json_* file:
930
939
+
931
940
----
932
- $ oc secrets new dockerhub ~/.docker/config.json
941
+ $ oc create secret generic dockerhub \
942
+ --from-file=.dockerconfigjson=<path/to/.docker/config.json> \
943
+ --type=kubernetes.io/dockerconfigjson
933
944
----
934
945
+
935
946
This generates a JSON specification of the secret named `dockerhub` and
0 commit comments