mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
28 lines
861 B
Plaintext
28 lines
861 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
//* builds/creating-build-inputs.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="builds-source-secret-combinations-basic-auth-gitconfig_{context}"]
|
|
= Creating a basic authentication secret with a Git configuration file
|
|
|
|
You can combine the different methods for creating source clone secrets for your specific needs, such as a secret that combines a basic authentication and a `.gitconfig` file.
|
|
|
|
.Prerequisites
|
|
|
|
* Basic authentication credentials
|
|
* A `.gitconfig` file
|
|
|
|
.Procedure
|
|
|
|
* To create a basic authentication secret with a `.gitconfig` file, enter the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc create secret generic <secret_name> \
|
|
--from-literal=username=<user_name> \
|
|
--from-literal=password=<password> \
|
|
--from-file=</path/to/.gitconfig> \
|
|
--type=kubernetes.io/basic-auth
|
|
----
|