Valid EX280 Dumps shared by EduDump.com for Helping Passing EX280 Exam! EduDump.com now offer the newest EX280 exam dumps, the EduDump.com EX280 exam questions have been updated and answers have been corrected get the newest EduDump.com EX280 dumps with Test Engine here:
Create Project Template Task information Details: Generate the bootstrap project template, create it in openshift-config , update the cluster project configuration to use the template, and create a new project to validate it.
Correct Answer:
See the solution below in Explanation. Explanation: Solution: * Generate the default template: oc adm create-bootstrap-project-template -o yaml > template.yaml * Review and edit template.yaml if required. * Create the template in openshift-config: oc create -f template.yaml -n openshift-config * Edit the cluster project configuration: oc edit project.config.openshift.io/cluster * Add or update: spec: projectRequestTemplate: name: project-request * Save and exit. * Create a test project: oc new-project test123 * Verify the template behavior: oc get project test123 -o yaml Notes: * The uploaded lab text shows projects.config.openshift.io cluster-admin; the standard resource is project. config.openshift.io/cluster. This task checks cluster-wide customization of new-project creation behavior.