From bf462fdccd7c4bf0b262a327829793f1c246bee7 Mon Sep 17 00:00:00 2001 From: Michael Burke Date: Thu, 30 Oct 2025 14:37:15 -0400 Subject: [PATCH] Removing an unused module file --- ...pod-using-a-different-service-account.adoc | 33 ------------------- 1 file changed, 33 deletions(-) delete mode 100644 modules/pod-using-a-different-service-account.adoc diff --git a/modules/pod-using-a-different-service-account.adoc b/modules/pod-using-a-different-service-account.adoc deleted file mode 100644 index bd962fee0d..0000000000 --- a/modules/pod-using-a-different-service-account.adoc +++ /dev/null @@ -1,33 +0,0 @@ -// Module included in the following assemblies: -// -// * orphaned - -:_mod-docs-content-type: PROCEDURE -[id="pod-using-a-different-service-account_{context}"] -= Running a pod with a different service account - -You can run a pod with a service account other than the default: - -.Prerequisites - -* Install the `oc` command-line interface. -* Configure a service account. -* Create a DeploymentConfig. - -.Procedure - -. Edit the DeploymentConfig: -+ ----- -$ oc edit dc/ ----- - -. Add the `serviceAccount` and `serviceAccountName` parameters to the `spec` -field, and specify the service account that you want to use: -+ ----- -spec: - securityContext: {} - serviceAccount: - serviceAccountName: -----